freenetis-github/application/helpers/callback.php @ 8d0578dc
8baed187 | Michal Kliment | <?php defined('SYSPATH') or die('No direct script access.');
|
|
/*
|
|||
* This file is part of open source system FreenetIS
|
|||
* and it is released under GPLv3 licence.
|
|||
*
|
|||
* More info about licence can be found:
|
|||
* http://www.gnu.org/licenses/gpl-3.0.html
|
|||
*
|
|||
* More info about project can be found:
|
|||
* http://www.freenetis.org/
|
|||
*
|
|||
*/
|
|||
/**
|
|||
* Helper for callback of Grid used at controllers.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
*/
|
|||
class callback
|
|||
{
|
|||
/************** Callbacks for global use **********************************/
|
|||
/**
|
|||
* Callback function to print boolean as word (yes or no)
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function boolean($item, $name)
|
|||
{
|
|||
if ($item->$name)
|
|||
{
|
|||
echo __('Yes');
|
|||
}
|
|||
else
|
|||
{
|
|||
echo __('No');
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* Callback for axodoc
|
|||
*
|
|||
* @author David Raška
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function axodoc($item, $name)
|
|||
{
|
|||
echo '<a href="'.AXODOC_URL.'?axo='.urlencode($item->section_value).'/'.
|
|||
$item->value.'" target="_blank" class="action_field_icon" title="'.
|
|||
__('Show pages where is this AXO (access right) used.').'">'.
|
|||
html::image(array
|
|||
(
|
|||
'width' => '14',
|
|||
'height' => '14',
|
|||
'alt' => __('Show pages where is this AXO (access right) used.'),
|
|||
'src' => url::base().'/media/images/icons/grid_action/axodoc.png'
|
|||
)).'</a>';
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback for date
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function date($item, $name)
|
|||
{
|
|||
echo date('j.n. Y', strtotime($item->$name));
|
|||
}
|
|||
/**
|
|||
* Callback function to show datetime in human format
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function datetime($item, $name)
|
|||
{
|
|||
echo date::pretty($item->$name).' '.date::pretty_time($item->$name);
|
|||
}
|
|||
/**
|
|||
* Returns diff between field and current time
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
* @param type $args
|
|||
*/
|
|||
public static function datetime_diff($item, $name, $args = array())
|
|||
{
|
|||
// return in array ('y' => years, 'm' => months, etc.)
|
|||
$interval = date::interval(date('Y-m-d H:i:s'), $item->$name);
|
|||
// don't print days
|
|||
unset($interval['days']);
|
|||
$units = array
|
|||
(
|
|||
'y' => 'year',
|
|||
'm' => 'month',
|
|||
'd' => 'day',
|
|||
'h' => 'hour',
|
|||
'i' => 'minute',
|
|||
's' => 'second'
|
|||
);
|
|||
// short output?
|
|||
$short = (isset($args[0]) && $args[0] == 'short');
|
|||
$pieces = array();
|
|||
foreach ($interval as $unit => $val)
|
|||
c1bdc1c4 | Michal Kliment | {
|
|
c2e44ab0 | Michal Kliment | // do not work with empty values (fixes #412)
|
|
if (empty($val))
|
|||
{
|
|||
continue;
|
|||
}
|
|||
8baed187 | Michal Kliment | // make plural (if needed) and translate
|
|
$unit = strtolower(__($units[$unit]. (($val > 1) ? 's' : '')));
|
|||
// create short output (if needed)
|
|||
if ($short)
|
|||
$unit = substr($unit,0,1);
|
|||
$pieces[] = $val.' '.$unit;
|
|||
}
|
|||
// return result
|
|||
echo implode(', ',$pieces);
|
|||
c1bdc1c4 | Michal Kliment | }
|
|
8baed187 | Michal Kliment | ||
/**
|
|||
* Callback for display GPS
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function gps_field($item, $name)
|
|||
{
|
|||
echo gps::degrees_from_str($item->$name, true);
|
|||
}
|
|||
/**
|
|||
* Callback for limited text, text over 50 character is stripped and added to title.
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function limited_text($item, $name)
|
|||
{
|
|||
$text = strip_tags($item->$name);
|
|||
if (mb_strlen($text) > 50)
|
|||
{
|
|||
$title = htmlspecialchars($text);
|
|||
$text = text::limit_chars(htmlspecialchars($text), 50);
|
|||
echo '<span class="help" title="' . $title . '">' . $text . '</span>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $text;
|
|||
}
|
|||
}
|
|||
/**
|
|||
18ac9009 | Ondřej Fibich | ||
8baed187 | Michal Kliment | * Callback for money, gets price from property with name given by args.
|
|
*
|
|||
18ac9009 | Ondřej Fibich | * @author Ondrej Fibich, Honza Dubina
|
|
8baed187 | Michal Kliment | * @param object $item
|
|
* @param string $name
|
|||
18ac9009 | Ondřej Fibich | * @param array $args
|
|
* no_transfer - do not print link to transfer
|
|||
* round - custom rounding according to rounding type property
|
|||
* print_zero - prints zero price with correct formating
|
|||
8baed187 | Michal Kliment | */
|
|
18ac9009 | Ondřej Fibich | public static function money($item, $name, $args = array())
|
|
8baed187 | Michal Kliment | {
|
|
18ac9009 | Ondřej Fibich | if (in_array('print_zero', $args))
|
|
{
|
|||
if (is_null($item->$name))
|
|||
return; // NULL value
|
|||
}
|
|||
else
|
|||
{
|
|||
if (empty($item->$name))
|
|||
return; // 0 value
|
|||
}
|
|||
$price = $item->$name;
|
|||
// has rounding type?
|
|||
/*if (property_exists($item, 'rounding_type') &&
|
|||
in_array('round', $args))
|
|||
c1bdc1c4 | Michal Kliment | {
|
|
18ac9009 | Ondřej Fibich | $price = Invoices_Controller::round_price($price, $item->rounding_type);
|
|
c1bdc1c4 | Michal Kliment | }
|
|
18ac9009 | Ondřej Fibich | else
|
|
{*/
|
|||
$price = round($price, 2);
|
|||
//}
|
|||
c1bdc1c4 | Michal Kliment | ||
18ac9009 | Ondřej Fibich | $price = number_format($price, 2, ',', ' ') . ' ';
|
|
8baed187 | Michal Kliment | $price = str_replace(' ', ' ', $price);
|
|
// has currency?
|
|||
if (property_exists($item, 'currency'))
|
|||
{
|
|||
$price .= __($item->currency);
|
|||
}
|
|||
// default currency
|
|||
else
|
|||
{
|
|||
$price .= __(Settings::get('currency'));
|
|||
}
|
|||
// has transfer?
|
|||
18ac9009 | Ondřej Fibich | if (Settings::get('finance_enabled') &&
|
|
property_exists($item, 'transfer_id') && $item->transfer_id &&
|
|||
!in_array('no_transfer', $args))
|
|||
8baed187 | Michal Kliment | {
|
|
echo html::anchor('transfers/show/' . $item->transfer_id, $price);
|
|||
}
|
|||
// just price
|
|||
else
|
|||
{
|
|||
echo $price;
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Prints value only if it is not empty, else prints dash (or given string)
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
* @param type $args
|
|||
*/
|
|||
c2e44ab0 | Michal Kliment | public static function not_empty($item, $name, $args = array())
|
|
8baed187 | Michal Kliment | {
|
|
if ($item->$name === NULL)
|
|||
{
|
|||
echo (isset($args[0])) ? $args[0] : '-';
|
|||
}
|
|||
else
|
|||
echo $item->$name;
|
|||
}
|
|||
/**
|
|||
* Callback for percents.
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function percent($item, $name)
|
|||
{
|
|||
echo $item->$name.'%';
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* Callback for percents.
|
|||
*
|
|||
* @author Jan Dubina
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function percent2($item, $name)
|
|||
{
|
|||
echo ($item->$name * 100) .'%';
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Round value by first argument. If first argument is lower than 0,
|
|||
* value is rouded right from decimal point, left otherwise.
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param name $name
|
|||
* @param array $args
|
|||
*/
|
|||
public static function round($item, $name, $args = array())
|
|||
{
|
|||
$precision = isset($args[0]) ? intval($args[0]) : 2;
|
|||
echo round($item->$name, $precision);
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* Callback function to print count with title (column of thew title is
|
|||
* stored in args)
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
* @param array $args
|
|||
*/
|
|||
public static function count_field($item, $name, $args = array())
|
|||
{
|
|||
$title = @$args[0];
|
|||
if (!empty($args[0]) && isset($item->$title))
|
|||
echo '<span class="help" title="' . $item->$title . '">' . $item->$name . "</span>";
|
|||
else
|
|||
echo $item->$name;
|
|||
}
|
|||
8baed187 | Michal Kliment | /************** Callbacks for using in special ocations *******************/
|
|
/**
|
|||
* Callback function to print ACOs count with their preview of values
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function aco_count_field ($item, $name)
|
|||
{
|
|||
if ($item->aco_count)
|
|||
c1bdc1c4 | Michal Kliment | echo "<span class='help' title='$item->aco_names'>$item->aco_count</span>";
|
|
8baed187 | Michal Kliment | else
|
|
echo $item->aco_count;
|
|||
}
|
|||
public static function aco_value_field ($item, $name)
|
|||
{
|
|||
echo Aco_Model::get_action($item->value);
|
|||
}
|
|||
/**
|
|||
* Callback to draw active/inactive image in grid field
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function active_field($item, $name)
|
|||
{
|
|||
$color = 'red';
|
|||
$state = 'Yes';
|
|||
if (!$item->$name)
|
|||
{
|
|||
$state = 'No';
|
|||
$color = 'green';
|
|||
}
|
|||
echo '<span style="color: '.$color.'">'.__(''.$state).'</span>';
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | ||
/**
|
|||
* Callback for type field
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @staticvar string $enum_type_model
|
|||
* @param Contact_Model $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function additional_contacts_type_callback($item, $name)
|
|||
{
|
|||
static $enum_type_model = NULL;
|
|||
if ($enum_type_model == NULL)
|
|||
{
|
|||
$enum_type_model = new Enum_type_Model();
|
|||
}
|
|||
echo $enum_type_model->get_value($item->type);
|
|||
if (isset($item->type) && $item->type == Contact_Model::TYPE_EMAIL &&
|
|||
isset($item->user_id))
|
|||
{
|
|||
$contact_model = new Contact_Model($item->id);
|
|||
if ($contact_model->is_user_redirected_email($item->user_id))
|
|||
{
|
|||
echo ' ' . html::image(array
|
|||
(
|
|||
'src' => '/media/images/icons/mail-forward.png',
|
|||
'title' => __('Your inner mail is redirected to this e-mail box'),
|
|||
));
|
|||
}
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | ||
/**
|
|||
* Callback function to print type of members address points
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function address_point_member_field($item, $name)
|
|||
{
|
|||
switch ($item->type)
|
|||
{
|
|||
// it's domicile of member
|
|||
case 1:
|
|||
echo __('Domicile'). ' '
|
|||
. help::hint('address_point_member_domicile');
|
|||
break;
|
|||
// it's only connecting place of member, he has domicile on another address point
|
|||
case 2:
|
|||
echo __('Connecting place'). ' '
|
|||
. help::hint('address_point_member_connecting_place');
|
|||
break;
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback for amount field in transfers of account
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function amount_field($item, $name)
|
|||
{
|
|||
if ($item->amount > 0)
|
|||
{
|
|||
echo '<span style="color:green">'
|
|||
. number_format((float)$item->amount, 2, ',', ' ')
|
|||
. '</span>';
|
|||
}
|
|||
else if ($item->amount < 0)
|
|||
{
|
|||
echo '<span style="color:red">'
|
|||
. number_format((float)$item->amount, 2, ',', ' ')
|
|||
. '</span>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $item->amount;
|
|||
}
|
|||
}
|
|||
18ac9009 | Ondřej Fibich | ||
/**
|
|||
* @author David Raska
|
|||
* @param $item
|
|||
* @param $name
|
|||
*/
|
|||
903a758d | Filip Miskarik | public static function amount_after_transfer_field($item, $name)
|
|
18ac9009 | Ondřej Fibich | {
|
|
903a758d | Filip Miskarik | if ($item->subtotal > 0)
|
|
18ac9009 | Ondřej Fibich | {
|
|
echo '<span style="color:green">'
|
|||
903a758d | Filip Miskarik | . number_format((float)$item->subtotal, 2, ',', ' ')
|
|
18ac9009 | Ondřej Fibich | . '</span>';
|
|
}
|
|||
903a758d | Filip Miskarik | else if ($item->subtotal < 0)
|
|
18ac9009 | Ondřej Fibich | {
|
|
echo '<span style="color:red">'
|
|||
903a758d | Filip Miskarik | . number_format((float)$item->subtotal, 2, ',', ' ')
|
|
18ac9009 | Ondřej Fibich | . '</span>';
|
|
}
|
|||
else
|
|||
{
|
|||
903a758d | Filip Miskarik | echo $item->subtotal;
|
|
18ac9009 | Ondřej Fibich | }
|
|
}
|
|||
8baed187 | Michal Kliment | ||
18ac9009 | Ondřej Fibich | /**
|
|
* API account log type callback - simply prints name of type.
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function api_account_log_type($item, $name)
|
|||
{
|
|||
echo Api_account_log_Model::get_type_name($item->{$name});
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback function to print ARO groups count with their preview of values
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function aro_groups_count_field ($item, $name)
|
|||
{
|
|||
if ($item->aro_groups_count)
|
|||
c1bdc1c4 | Michal Kliment | echo "<span class='help' title='$item->aro_groups_names'>$item->aro_groups_count</span>";
|
|
8baed187 | Michal Kliment | else
|
|
echo $item->aro_groups_count;
|
|||
}
|
|||
/**
|
|||
* Callback function to print ARO groups count with their preview of values
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function axo_count_field ($item, $name)
|
|||
{
|
|||
if ($item->axo_count)
|
|||
c1bdc1c4 | Michal Kliment | echo '<span class="help" title="'.$item->axo_names.'">'.$item->axo_count.'</span>';
|
|
8baed187 | Michal Kliment | else
|
|
echo $item->axo_count;
|
|||
}
|
|||
/**
|
|||
* Callback for balance field in accounts.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function balance_field($item, $name)
|
|||
{
|
|||
$balance = $item->balance;
|
|||
if ($item->balance != 0)
|
|||
{
|
|||
$balance = number_format((float)$item->balance, 2, ',', ' ');
|
|||
}
|
|||
$color = '';
|
|||
if ($item->balance > 0)
|
|||
{
|
|||
$color = ' style="color:green"';
|
|||
}
|
|||
elseif ($item->balance < 0)
|
|||
{
|
|||
$color = ' style="color:red"';
|
|||
}
|
|||
echo "<span$color>$balance</span>";
|
|||
if (isset($item->a_comment) && $item->a_comment != '')
|
|||
{
|
|||
echo "<span class='help' title='".$item->a_comment."'>";
|
|||
echo "<img src='".url::base()."media/images/icons/comment.png'>";
|
|||
echo "</span>";
|
|||
}
|
|||
if (isset($item->member_id) && $item->member_id != 1)
|
|||
{
|
|||
echo ' '.html::anchor(
|
|||
($item->a_comments_thread_id) ?
|
|||
'comments/add/'.$item->a_comments_thread_id :
|
|||
7dafd607 | Michal Kliment | 'comments/add_thread/account/'.$item->aid,
|
|
8baed187 | Michal Kliment | html::image('media/images/icons/ico_add.gif'), array
|
|
(
|
|||
'title' => __('Add comment to financial state of member')
|
|||
)
|
|||
);
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* Bank account type field.
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function bank_account_type($item, $name)
|
|||
{
|
|||
echo Bank_account_Model::get_type_name($item->$name);
|
|||
}
|
|||
/**
|
|||
* Callback function to print rate of speed class
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function speed_class_ceil_field ($item, $name)
|
|||
{
|
|||
if ($item->d_ceil != $item->u_ceil)
|
|||
{
|
|||
echo network::speed($item->u_ceil) . '/';
|
|||
echo network::speed($item->d_ceil);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo network::speed($item->d_ceil);
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print ceil of speed class
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function speed_class_rate_field ($item, $name)
|
|||
{
|
|||
if ($item->d_rate != $item->u_rate)
|
|||
{
|
|||
echo network::speed($item->u_rate) . '/';
|
|||
echo network::speed($item->d_rate);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo network::speed($item->d_rate);
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback function to print bitrate of link
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function bitrate_field ($item, $name, $args = array())
|
|||
{
|
|||
if($item->bitrate)
|
|||
{
|
|||
$byte = TRUE;
|
|||
if (isset($args[0]))
|
|||
$byte = $args[0];
|
|||
echo network::size($item->bitrate/1024, $byte);
|
|||
}
|
|||
else
|
|||
echo '-';
|
|||
}
|
|||
/**
|
|||
* Callback for device field.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function device_field($item, $name)
|
|||
{
|
|||
if ($item->device_id)
|
|||
{
|
|||
echo html::anchor("devices/show/$item->device_id", $item->device_name);
|
|||
}
|
|||
else if ($item->device_name != '')
|
|||
{
|
|||
echo $item->device_name;
|
|||
}
|
|||
else if (!$item->ip_address_id)
|
|||
{
|
|||
echo '<span style="color: green">'.__('Free').'</span>';
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print count of ports and grouped ports as title
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function devices_field ($item, $name)
|
|||
{
|
|||
if ($item->devices_count)
|
|||
{
|
|||
echo '<span class="help" title="'.$item->devices.'">'.$item->devices_count.'</span>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $item->devices_count;
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback field for canceling redirection of
|
|||
* one IP address on member's profile screen.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function cancel_redirection_of_member($item, $name)
|
|||
{
|
|||
if (empty($item->message_id))
|
|||
{
|
|||
c2e44ab0 | Michal Kliment | echo ' - ';
|
|
8baed187 | Michal Kliment | }
|
|
else
|
|||
{
|
|||
echo __('Cancel').' ';
|
|||
echo html::anchor(
|
|||
"redirect/delete/$item->ip_address_id/$item->message_id/member",
|
|||
__('one IP address')
|
|||
);
|
|||
echo ' | ';
|
|||
echo html::anchor(
|
|||
"redirect/delete_from_member/$item->member_id/$item->message_id",
|
|||
__('all IP addresses of member')
|
|||
);
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print network address in CIDR format
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function cidr_field ($item, $name)
|
|||
{
|
|||
$last_ip = long2ip(ip2long($item->network_address) + (~ip2long($item->netmask) & 0xffffffff));
|
|||
echo "<span class='help' title='$item->network_address - $last_ip'>$item->cidr_address</span>";
|
|||
}
|
|||
/**
|
|||
* Callback to print comments count with comments as title
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function comments_field ($item, $name)
|
|||
{
|
|||
echo $item->comments_count;
|
|||
if ($item->comments_count)
|
|||
{
|
|||
echo "<span title='$item->comments' class='help'>";
|
|||
echo "<img src='".url::base()."media/images/icons/comment.png'>";
|
|||
echo "</span>";
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print subject of comment
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function comment_to_field ($item, $name)
|
|||
{
|
|||
switch ($item->type)
|
|||
{
|
|||
case 'account':
|
|||
echo __('Financial state of member') . ' ' . html::anchor(
|
|||
'members/show/'.$item->member_id, $item->member_name,
|
|||
array('title' => __('Show member'))
|
|||
);
|
|||
break;
|
|||
case 'job':
|
|||
echo html::anchor(
|
|||
'works/show/'.$item->work_id, __('Work'),
|
|||
array('title' => __('Show work'))
|
|||
).' '.__('of user').' '.html::anchor(
|
|||
'users/show/'.$item->work_user_id,
|
|||
$item->work_user_name,
|
|||
array('title' => __('Show user'))
|
|||
);
|
|||
break;
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print connected device
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function connected_to_device ($item, $name)
|
|||
{
|
|||
if ($item->connected_to_device_id)
|
|||
{
|
|||
if ($item->connected_to_devices_count == 1)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | if (Controller::instance()->acl_check_view('Devices_Controller', 'devices'))
|
|
{
|
|||
echo html::anchor(
|
|||
'devices/show/'.$item->connected_to_device_id,
|
|||
$item->connected_to_device_name
|
|||
);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $item->connected_to_device_name;
|
|||
}
|
|||
if (Controller::instance()->acl_check_view('Ifaces_Controller', 'iface'))
|
|||
{
|
|||
echo " (". html::anchor(
|
|||
'ifaces/show/'.$item->connected_to_iface_id,
|
|||
$item->connected_to_iface_name
|
|||
).")";
|
|||
}
|
|||
else
|
|||
{
|
|||
echo " (".$item->connected_to_iface_name.")";
|
|||
}
|
|||
8baed187 | Michal Kliment | }
|
|
c1bdc1c4 | Michal Kliment | else if (Controller::instance()->acl_check_view('Links_Controller', 'link') &&
|
|
isset($item->link_id))
|
|||
8baed187 | Michal Kliment | {
|
|
echo html::anchor(
|
|||
'links/show/'.$item->link_id,
|
|||
__('More devices'), array
|
|||
(
|
|||
'class' => 'more',
|
|||
'title' => $item->connected_to_devices
|
|||
)
|
|||
);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo '<span class="more" title="'.$item->connected_to_devices.'">'.__('More devices').'</span>';
|
|||
}
|
|||
}
|
|||
else
|
|||
{
|
|||
if (Iface_Model::type_has_link($item->type))
|
|||
echo '<span style="color: green">'.__('Not connected').'</span>';
|
|||
else
|
|||
echo '-';
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print connected device to device
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function device_connected_to_device ($item, $name)
|
|||
{
|
|||
$connected = ORM::factory('device')->get_all_connected_to_device($item->id);
|
|||
if (isset($connected->connected_to_device_id) &&
|
|||
$connected->connected_to_device_id)
|
|||
{
|
|||
if ($connected->connected_to_devices_count == 1)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | if (Controller::instance()->acl_check_view('Devices_Controller', 'devices'))
|
|
{
|
|||
echo html::anchor(
|
|||
'devices/show/'.$connected->connected_to_device_id,
|
|||
$connected->connected_to_device_name
|
|||
);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $connected->connected_to_device_name;
|
|||
}
|
|||
if (Controller::instance()->acl_check_view('Ifaces_Controller', 'iface'))
|
|||
{
|
|||
echo " (". html::anchor(
|
|||
'ifaces/show/'.$connected->connected_to_iface_id,
|
|||
$connected->connected_to_iface_name
|
|||
).")";
|
|||
}
|
|||
else
|
|||
{
|
|||
echo " (".$connected->connected_to_iface_name.")";
|
|||
}
|
|||
8baed187 | Michal Kliment | }
|
|
else
|
|||
{
|
|||
echo "<span class='more' title='".$connected->connected_to_devices."'>".__('More devices')."</span>";
|
|||
}
|
|||
}
|
|||
else
|
|||
{
|
|||
echo "<span style='color: green'>".__('Not connected')."</span>";
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* DHCP last access color diff.
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function dhcp_servers_last_access_diff_field($item, $name)
|
|||
{
|
|||
$timeout = Settings::get('dhcp_server_reload_timeout');
|
|||
if (empty($item->$name))
|
|||
{
|
|||
echo '<b class="error_text">' . __('Never') . '</b>';
|
|||
}
|
|||
else if (abs(time() - strtotime($item->$name)) > $timeout)
|
|||
{
|
|||
echo '<b class="error_text">';
|
|||
self::datetime_diff($item, $name);
|
|||
echo '</b>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo self::datetime_diff($item, $name);
|
|||
}
|
|||
}
|
|||
18ac9009 | Ondřej Fibich | /**
|
|
* DNS last access color diff.
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function dns_servers_last_access_diff_field($item, $name)
|
|||
{
|
|||
$timeout = Settings::get('dns_server_reload_timeout');
|
|||
if (empty($item->$name))
|
|||
{
|
|||
echo '<b class="error_text">' . __('Never') . '</b>';
|
|||
}
|
|||
else if (abs(time() - strtotime($item->$name)) > $timeout)
|
|||
{
|
|||
echo '<b class="error_text">';
|
|||
self::datetime_diff($item, $name);
|
|||
echo '</b>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo self::datetime_diff($item, $name);
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback function to print e-mail From address
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function email_from_field($item, $name)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | if (isset($item->from_user_id))
|
|
8baed187 | Michal Kliment | {
|
|
echo html::anchor(
|
|||
'users/show/'.$item->from_user_id,
|
|||
$item->from_user_name,
|
|||
array('title' => $item->from)
|
|||
);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $item->from;
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print e-mail To address
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function email_to_field ($item, $name)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | if (isset($item->to_user_id))
|
|
8baed187 | Michal Kliment | {
|
|
echo html::anchor(
|
|||
'users/show/'.$item->to_user_id,
|
|||
$item->to_user_name,
|
|||
array('title' => $item->to)
|
|||
);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $item->to;
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print e-mail subject
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function email_subject_field ($item, $name)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | echo "<span";
|
|
if (isset($item->body))
|
|||
{
|
|||
$body = strip_tags(nl2br($item->body));
|
|||
$sbody = strip_tags($body);
|
|||
echo " class='help' title='$sbody'";
|
|||
}
|
|||
echo ">$item->subject</span>";
|
|||
8baed187 | Michal Kliment | }
|
|
/**
|
|||
* Callback function to print e-mail state
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function email_state_field ($item, $name)
|
|||
{
|
|||
switch ($item->state)
|
|||
{
|
|||
case Email_queue_Model::STATE_NEW:
|
|||
echo __('New');
|
|||
break;
|
|||
case Email_queue_Model::STATE_OK:
|
|||
echo "<span style='color: green'>".__('Sent')."</span>";
|
|||
break;
|
|||
case Email_queue_Model::STATE_FAIL:
|
|||
echo "<span style='color: red'>".__('Failed')."</span>";
|
|||
break;
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | ||
/**
|
|||
* Callback function to print connection request state
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function connection_request_state_field($item, $name)
|
|||
{
|
|||
switch ($item->state)
|
|||
{
|
|||
case Connection_request_Model::STATE_UNDECIDED:
|
|||
echo "<span style='color: #999'>".__('Undecided')."</span>";
|
|||
break;
|
|||
case Connection_request_Model::STATE_APPROVED:
|
|||
echo "<span style='color: green'>".__('Approved')."</span>";
|
|||
break;
|
|||
case Connection_request_Model::STATE_REJECTED:
|
|||
echo "<span style='color: red'>".__('Rejected')."</span>";
|
|||
break;
|
|||
}
|
|||
if (isset($item->a_comment) && !empty($item->a_comment))
|
|||
{
|
|||
echo '<span class="help" title="'.$item->a_comment.'">';
|
|||
echo html::image('media/images/icons/comment.png');
|
|||
echo '</span>';
|
|||
}
|
|||
if (isset($item->member_id) && isset($item->a_comment_add) && $item->a_comment_add)
|
|||
{
|
|||
$url = (isset($item->a_comments_thread_id) && $item->a_comments_thread_id) ?
|
|||
'comments/add/'.$item->a_comments_thread_id :
|
|||
7dafd607 | Michal Kliment | 'comments/add_thread/connection_request/'.$item->id;
|
|
c1bdc1c4 | Michal Kliment | ||
echo html::anchor($url, html::image('media/images/icons/ico_add.gif'), array
|
|||
(
|
|||
'title' => __('Add comment to connection request'),
|
|||
'class' => 'popup_link'
|
|||
));
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | ||
/**
|
|||
* Callback to print enable/disable image
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
* @param array $args
|
|||
*/
|
|||
public static function enabled_field($item, $name, $args = array())
|
|||
{
|
|||
// 1 => active, 0 => inactive
|
|||
switch ($item->$name)
|
|||
{
|
|||
case 1:
|
|||
$state = 'active';
|
|||
break;
|
|||
case 0:
|
|||
$state = 'inactive';
|
|||
break;
|
|||
default:
|
|||
$state = 'inactive';
|
|||
break;
|
|||
}
|
|||
if (isset($args[0]) && $args[0] != '')
|
|||
{
|
|||
echo html::anchor($args[0] . $item->id, html::image(array
|
|||
(
|
|||
'src' => 'media/images/states/' . $state . '.png',
|
|||
'title' => __('' . $state))
|
|||
));
|
|||
}
|
|||
else
|
|||
{
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/states/' . $state . '.png',
|
|||
'title' => __('' . $state)
|
|||
));
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print type of interface
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function iface_type_field ($item, $name)
|
|||
{
|
|||
switch ($item->type)
|
|||
{
|
|||
case Iface_Model::TYPE_WIRELESS:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/wireless.png',
|
|||
'title' => __('Wireless')
|
|||
));
|
|||
break;
|
|||
case Iface_Model::TYPE_ETHERNET:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/ethernet.png',
|
|||
'title' => __('Ethernet')
|
|||
));
|
|||
break;
|
|||
case Iface_Model::TYPE_PORT:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/port.png',
|
|||
'title' => __('Port')
|
|||
));
|
|||
break;
|
|||
case Iface_Model::TYPE_BRIDGE:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/bridge.png',
|
|||
'title' => __('Bridge')
|
|||
));
|
|||
break;
|
|||
case Iface_Model::TYPE_VLAN:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/vlan.png',
|
|||
'title' => __('Vlan')
|
|||
));
|
|||
break;
|
|||
case Iface_Model::TYPE_VIRTUAL_AP:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/vlan_ap.png',
|
|||
'title' => __('Virtual AP')
|
|||
));
|
|||
break;
|
|||
case Iface_Model::TYPE_INTERNAL:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/internal.png',
|
|||
'title' => __('Internal')
|
|||
));
|
|||
break;
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* Callback function to print type of invoice
|
|||
*
|
|||
* @author Jan Dubina
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function invoice_type_field ($item, $name)
|
|||
{
|
|||
echo Invoice_Model::get_type($item->$name);
|
|||
}
|
|||
/**
|
|||
* Callback function to print partner name or company
|
|||
*
|
|||
* @author Jan Dubina
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function partner_field ($item, $name)
|
|||
{
|
|||
if (!empty($item->company))
|
|||
echo $item->company;
|
|||
else
|
|||
echo $item->$name;
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback field for ip address. Leaves blank ip if needed.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function ip_address_field($item, $name, $args = array())
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | $class = 'popup_link';
|
|
8baed187 | Michal Kliment | $title = '';
|
|
$ip_address = (isset($args[0]) && $args[0]) ?
|
|||
$item->ip_address.'/'.$item->subnet_range :
|
|||
$item->ip_address;
|
|||
if (isset($item->ip_addresses))
|
|||
{
|
|||
$title = $item->ip_addresses;
|
|||
if (count(explode(',', $item->ip_addresses)) > 2)
|
|||
{
|
|||
$class = 'more';
|
|||
}
|
|||
}
|
|||
if ((!isset($args[1]) || $args[1]) && $item->ip_address_id)
|
|||
{
|
|||
if (url_lang::current(1) == 'devices')
|
|||
{
|
|||
echo html::anchor(
|
|||
7dafd607 | Michal Kliment | "ip_addresses/show/$item->ip_address_id",
|
|
8baed187 | Michal Kliment | $ip_address, array('class' => $class, 'title' => $title)
|
|
);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo html::anchor(
|
|||
"ip_addresses/show/$item->ip_address_id",
|
|||
$ip_address,
|
|||
array('class' => $class, 'title' => $title)
|
|||
);
|
|||
}
|
|||
}
|
|||
else if ($item->ip_address != '')
|
|||
{
|
|||
if (!isset($args[2]) || $args[2])
|
|||
echo '<span style="color: green" class="'.$class.'" title="'.$title.'">'.$ip_address.'</span>';
|
|||
else
|
|||
echo $ip_address;
|
|||
}
|
|||
else
|
|||
echo ' ';
|
|||
}
|
|||
/**
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function items_count_field ($item, $name)
|
|||
{
|
|||
echo '<span class="help" title="'.$item->items_count_title.'">'.$item->items_count.'</span>';
|
|||
}
|
|||
/**
|
|||
* Callback print latency (from monitoring)
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function latency_field ($item, $name)
|
|||
{
|
|||
$title = __('Last').": $item->latency_current ".__('ms')." \n"
|
|||
.__('Minimum').": ".round($item->latency_min,2)." ".__('ms')."\n"
|
|||
.__('Average').": ".round($item->latency_avg,2)." ".__('ms')."\n"
|
|||
.__('Maximum').": ".round($item->latency_max,2)." ".__('ms')."\n";
|
|||
$text = $item->latency_avg ? round($item->latency_avg,2).' '.__('ms') : '-';
|
|||
echo "<span class='help' title='$title'>$text</span>";
|
|||
}
|
|||
/**
|
|||
* Callback for action of log
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function log_action_field($item, $name)
|
|||
{
|
|||
switch ($item->action)
|
|||
{
|
|||
case Log_Model::ACTION_ADD:
|
|||
echo __('Added');
|
|||
break;
|
|||
case Log_Model::ACTION_DELETE:
|
|||
echo __('Deleted');
|
|||
break;
|
|||
case Log_Model::ACTION_UPDATE:
|
|||
echo __('Updated');
|
|||
break;
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback fields prints either translated system message or
|
|||
* user message for redirection.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function message_field($item, $name)
|
|||
{
|
|||
// system messages
|
|||
c2e44ab0 | Michal Kliment | if ($item->type > 0)
|
|
8baed187 | Michal Kliment | {
|
|
// system messages
|
|||
echo __($item->message);
|
|||
}
|
|||
c2e44ab0 | Michal Kliment | else if ($item->type === NULL)
|
|
8baed187 | Michal Kliment | {
|
|
c2e44ab0 | Michal Kliment | // null value means no message
|
|
echo '<span style="color: #999">' . __('No redirection') . '</span>';
|
|||
8baed187 | Michal Kliment | }
|
|
else
|
|||
{
|
|||
c2e44ab0 | Michal Kliment | // user messages
|
|
echo $item->message;
|
|||
8baed187 | Michal Kliment | }
|
|
}
|
|||
/**
|
|||
* Callback for message type, it distinguishes between system and user redirection messages.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function message_type_field($item, $name)
|
|||
{
|
|||
if ($item->type == 0)
|
|||
{
|
|||
echo __('User message');
|
|||
}
|
|||
else
|
|||
{
|
|||
echo __('System message');
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback to print host state (from monitoring)
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function monitor_state_field($item, $name)
|
|||
{
|
|||
switch ($item->$name)
|
|||
{
|
|||
case Monitor_host_Model::STATE_UP:
|
|||
$image = url::base().'media/images/states/active.png';
|
|||
$title = __('Online');
|
|||
break;
|
|||
case Monitor_host_Model::STATE_DOWN:
|
|||
$image = url::base().'media/images/states/inactive.png';
|
|||
$title = __('Offline');
|
|||
break;
|
|||
case Monitor_host_Model::STATE_UNKNOWN:
|
|||
$image = url::base().'media/images/states/inactive.png';
|
|||
$title = __('Offline');
|
|||
break;
|
|||
}
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => $image,
|
|||
'title' => $title,
|
|||
'class' => 'monitor-state'
|
|||
));
|
|||
}
|
|||
/**
|
|||
* Callback function to print name of month
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function month_field ($item, $name)
|
|||
{
|
|||
echo strftime('%B', mktime(0,0,0,$item->month));
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | ||
8baed187 | Michal Kliment | /**
|
|
* Callback function to print form field for notification action
|
|||
c1bdc1c4 | Michal Kliment | *
|
|
8baed187 | Michal Kliment | * @param type $item
|
|
* @param type $name
|
|||
* @param type $input
|
|||
* @param type $args
|
|||
*/
|
|||
public static function notification_form_field ($item, $name, $input, $args = array())
|
|||
{
|
|||
$selected = Notifications_Controller::KEEP;
|
|||
c1bdc1c4 | Michal Kliment | $message = $args[0];
|
|
// valid message?
|
|||
if ($message instanceof Message_Model && $message && $message->id)
|
|||
8baed187 | Michal Kliment | {
|
|
c1bdc1c4 | Michal Kliment | switch ($message->type)
|
|
{
|
|||
2bd3da8a | Ondřej Fibich | case Message_Model::BIG_DEBTOR_MESSAGE:
|
|
if ($item->balance < Settings::get('big_debtor_boundary')
|
|||
&& !$item->interrupt
|
|||
&& ($item->type != Member_Model::TYPE_FORMER)
|
|||
&& (!$item->whitelisted || $message->ignore_whitelist))
|
|||
{
|
|||
$selected = Notifications_Controller::ACTIVATE;
|
|||
}
|
|||
break;
|
|||
c1bdc1c4 | Michal Kliment | case Message_Model::DEBTOR_MESSAGE:
|
|
2bd3da8a | Ondřej Fibich | if ($item->balance >= Settings::get('big_debtor_boundary')
|
|
&& $item->balance < Settings::get('debtor_boundary')
|
|||
c1bdc1c4 | Michal Kliment | && !$item->interrupt
|
|
&& ($item->type != Member_Model::TYPE_FORMER)
|
|||
&& (!$item->whitelisted || $message->ignore_whitelist))
|
|||
{
|
|||
$selected = Notifications_Controller::ACTIVATE;
|
|||
}
|
|||
break;
|
|||
case Message_Model::PAYMENT_NOTICE_MESSAGE:
|
|||
if ($item->balance >= Settings::get('debtor_boundary')
|
|||
&& $item->balance < Settings::get('payment_notice_boundary')
|
|||
&& !$item->interrupt
|
|||
&& ($item->type != Member_Model::TYPE_FORMER)
|
|||
&& (!$item->whitelisted || $message->ignore_whitelist))
|
|||
{
|
|||
$selected = Notifications_Controller::ACTIVATE;
|
|||
}
|
|||
break;
|
|||
case Message_Model::USER_MESSAGE:
|
|||
if (!$item->interrupt
|
|||
&& ($item->type != Member_Model::TYPE_FORMER)
|
|||
&& (!$item->whitelisted || $message->ignore_whitelist))
|
|||
{
|
|||
$selected = Notifications_Controller::ACTIVATE;
|
|||
}
|
|||
break;
|
|||
}
|
|||
// member notification settings if message is self cancelable
|
|||
// overrides global settings
|
|||
if ($selected == Notifications_Controller::ACTIVATE &&
|
|||
$message->self_cancel != Message_Model::SELF_CANCEL_DISABLED)
|
|||
{
|
|||
switch ($name)
|
|||
8baed187 | Michal Kliment | {
|
|
c1bdc1c4 | Michal Kliment | case 'redirection':
|
|
if (isset($item->notification_by_redirection) &&
|
|||
!$item->notification_by_redirection)
|
|||
{
|
|||
$selected = Notifications_Controller::KEEP;
|
|||
$input->title(__('Disabled in member settings'));
|
|||
}
|
|||
break;
|
|||
case 'email':
|
|||
if (isset($item->notification_by_email) &&
|
|||
!$item->notification_by_email)
|
|||
{
|
|||
$selected = Notifications_Controller::KEEP;
|
|||
$input->title(__('Disabled in member settings'));
|
|||
}
|
|||
break;
|
|||
case 'sms':
|
|||
if (isset($item->notification_by_sms) &&
|
|||
!$item->notification_by_sms)
|
|||
{
|
|||
$selected = Notifications_Controller::KEEP;
|
|||
$input->title(__('Disabled in member settings'));
|
|||
}
|
|||
break;
|
|||
8baed187 | Michal Kliment | }
|
|
c1bdc1c4 | Michal Kliment | }
|
|
$input->selected($selected);
|
|||
echo $input->html();
|
|||
8baed187 | Michal Kliment | }
|
|
}
|
|||
18ac9009 | Ondřej Fibich | /**
|
|
* Callback field for user name. Leaves blank name if needed.
|
|||
*
|
|||
* @author David Raska
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function user_field($item, $name, $args = array())
|
|||
{
|
|||
if ($item->user_id)
|
|||
{
|
|||
echo html::anchor("users/show/$item->user_id", $item->user_name);
|
|||
}
|
|||
elseif (isset($args[0]))
|
|||
{
|
|||
echo $args[0];
|
|||
}
|
|||
else
|
|||
{
|
|||
echo ' ';
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback field for member name. Leaves blank name if needed.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function member_field($item, $name, $args = array())
|
|||
{
|
|||
if ($item->member_id)
|
|||
{
|
|||
echo html::anchor("members/show/$item->member_id", $item->member_name);
|
|||
}
|
|||
elseif (isset($args[0]))
|
|||
{
|
|||
echo $args[0];
|
|||
}
|
|||
else
|
|||
{
|
|||
echo ' ';
|
|||
}
|
|||
}
|
|||
2a205303 | Michal Kliment | ||
/**
|
|||
* Callback field for member name and member ID. Leaves blank name if needed.
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function member_field_with_id($item, $name, $args = array())
|
|||
{
|
|||
if ($item->member_id)
|
|||
{
|
|||
e43d58d0 | Filip Miskarik | if ($item->member_name)
|
|
{
|
|||
$title = $item->member_name . ' (' . $item->member_id . ')';
|
|||
}
|
|||
else
|
|||
{
|
|||
$title = $item->member_id;
|
|||
}
|
|||
echo html::anchor("members/show/$item->member_id", $title);
|
|||
2a205303 | Michal Kliment | }
|
|
else
|
|||
{
|
|||
echo ' ';
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | ||
/**
|
|||
* Callback function to print type of member
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function member_type_field ($item, $name)
|
|||
{
|
|||
e43d58d0 | Filip Miskarik | if (property_exists($item, 'type_name'))
|
|
{
|
|||
echo $item->type_name;
|
|||
}
|
|||
else
|
|||
{
|
|||
echo Member_Model::get_type($item->$name);
|
|||
}
|
|||
// redirection flag
|
|||
if (property_exists($item, 'interrupt') && $item->interrupt)
|
|||
{
|
|||
echo ' (' . __('I') . ')';
|
|||
}
|
|||
8baed187 | Michal Kliment | }
|
|
/**
|
|||
* Callback function to print avarage of traffic of members
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
* @param type $args
|
|||
*/
|
|||
public static function members_traffic_avg_field($item, $name, $args = array())
|
|||
{
|
|||
$val = $item->$name;
|
|||
if (isset($args[0]))
|
|||
{
|
|||
switch ($args[0])
|
|||
{
|
|||
case 'weekly':
|
|||
$val /= 7;
|
|||
break;
|
|||
case 'monthly':
|
|||
$val /= date::days_of_month($item->month);
|
|||
break;
|
|||
case 'yearly':
|
|||
$val /= 365;
|
|||
break;
|
|||
}
|
|||
}
|
|||
echo network::size($val);
|
|||
}
|
|||
/**
|
|||
* Activates multiple redirections. All interrupted members, all debtors
|
|||
* with credit below debtor boundary and all should-pay members with
|
|||
* credit below payment notice boundary may be redirected.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function message_activate_field($item, $name)
|
|||
{
|
|||
$message = new Message_Model($item->id);
|
|||
c1bdc1c4 | Michal Kliment | if (!Message_Model::can_be_activate_directly($message->type))
|
|
8baed187 | Michal Kliment | {
|
|
echo ' ';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo html::anchor('messages/activate/'.$message->id, __('Activate'));
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Deactivates all activated redirections for given message.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function message_deactivate_field($item, $name)
|
|||
{
|
|||
$message = new Message_Model($item->id);
|
|||
c1bdc1c4 | Michal Kliment | if (!Message_Model::can_be_activate_directly($message->type))
|
|
8baed187 | Michal Kliment | {
|
|
echo ' ';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo html::anchor('messages/deactivate/'.$message->id, __('Deactivate'));
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print preview link of redirection message
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param unknown_type $item
|
|||
* @param unknown_type $name
|
|||
*/
|
|||
public static function message_preview_field($item, $name)
|
|||
{
|
|||
$message = new Message_Model($item->id);
|
|||
c2e44ab0 | Michal Kliment | if (empty($message->text))
|
|
{
|
|||
echo '<span class="red">' . __('Empty') . '</span>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo html::anchor(
|
|||
url::base().'redirection/?id='.$message->id,
|
|||
__('Preview'), array('target' => '_blank')
|
|||
);
|
|||
}
|
|||
8baed187 | Michal Kliment | }
|
|
/**
|
|||
* Callback function to print self-cancel state of message
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function message_self_cancel_field ($item, $name)
|
|||
{
|
|||
switch ($item->self_cancel)
|
|||
{
|
|||
case Message_Model::SELF_CANCEL_DISABLED:
|
|||
echo __('No');
|
|||
break;
|
|||
case Message_Model::SELF_CANCEL_MEMBER:
|
|||
$title = __('Possibility of canceling redirection to all IP addresses of member');
|
|||
echo "<span class='help' title='".$title."'>".__('Yes')."</span>";
|
|||
break;
|
|||
case Message_Model::SELF_CANCEL_IP:
|
|||
$title = __('Possibility of canceling redirection to only current IP address');
|
|||
echo "<span class='help' title='".$title."'>".__('Yes')."</span>";
|
|||
break;
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | ||
/**
|
|||
* Message auto activation settings type field
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
1e52b1de | Ondřej Fibich | public static function message_auto_setting_type($item, $name)
|
|
c1bdc1c4 | Michal Kliment | {
|
|
echo strtolower(Messages_automatical_activation_Model::get_type_message($item->$name));
|
|||
}
|
|||
/**
|
|||
* Message auto activation settings attributes field
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
1e52b1de | Ondřej Fibich | public static function message_auto_setting_attribute($item, $name)
|
|
c1bdc1c4 | Michal Kliment | {
|
|
$ats = Messages_automatical_activation_Model::get_type_attributes($item->type);
|
|||
$attrs = explode('/', $item->attribute);
|
|||
foreach ($ats as $at)
|
|||
{
|
|||
echo array_shift($attrs);
|
|||
if (isset($at['title']))
|
|||
{
|
|||
echo ' (' . __($at['title'], array(), 1) . ')';
|
|||
}
|
|||
if (count($attrs))
|
|||
{
|
|||
echo ', ';
|
|||
}
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | ||
/**
|
|||
* Callback for object of log
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function object_log_field($item, $name)
|
|||
{
|
|||
echo html::anchor(
|
|||
'logs/show_object/'.$item->table_name.'/'.$item->object_id,
|
|||
$item->object_id
|
|||
);
|
|||
}
|
|||
/**
|
|||
* Callback for order number field in grid
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
* @param array $args
|
|||
*/
|
|||
public static function order_number_field($item, $name, $args = array())
|
|||
{
|
|||
static $order_number;
|
|||
// first time set default number
|
|||
if (!isset($order_number))
|
|||
$order_number = $args[0];
|
|||
// direction
|
|||
switch ($args[1])
|
|||
{
|
|||
// increases
|
|||
case 1:
|
|||
$order_number++;
|
|||
break;
|
|||
// decreases
|
|||
case -1:
|
|||
$order_number--;
|
|||
break;
|
|||
default:
|
|||
// do nothing
|
|||
break;
|
|||
}
|
|||
echo $order_number.'.';
|
|||
}
|
|||
/**
|
|||
* Callback for locked private field in phone invoices
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function phone_invoice_private_field_locked($item, $name)
|
|||
{
|
|||
if ($item->private == 1)
|
|||
{
|
|||
echo '<span style="color: green">' . __('yes') . '</span>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo '<span style="color: red">' . __('no') . '</span>';
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback for showing state of invoice
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function phone_invoice_user_state($item, $name)
|
|||
{
|
|||
if ($item->locked == 1)
|
|||
{
|
|||
$title = __('Locked by admin');
|
|||
$src = 'media/images/states/readonly_16x16.png';
|
|||
}
|
|||
else if ($item->filled == 1)
|
|||
{
|
|||
$title = __('Already filled in');
|
|||
$src = 'media/images/states/good_16x16.png';
|
|||
}
|
|||
else
|
|||
{
|
|||
$title = __('Not filled in');
|
|||
$src = 'media/images/states/publish_x.png';
|
|||
}
|
|||
echo Html::image(array
|
|||
(
|
|||
'src' => $src,
|
|||
'title' => $title
|
|||
));
|
|||
}
|
|||
/**
|
|||
* Callback for showing state of invoice
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function phone_invoice_user_state2($item, $name)
|
|||
{
|
|||
if ($item->filled == 1)
|
|||
{
|
|||
echo Html::image(array
|
|||
(
|
|||
'src' => 'media/images/states/good_16x16.png',
|
|||
'title' => __('Already filled in')
|
|||
));
|
|||
}
|
|||
else
|
|||
{
|
|||
echo Html::image(array
|
|||
(
|
|||
'src' => 'media/images/states/publish_x.png',
|
|||
'title' => __('Not filled in')
|
|||
));
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback for phone period field
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function phone_period_field($item, $name)
|
|||
{
|
|||
echo period::get_name($item->period);
|
|||
}
|
|||
/**
|
|||
* Callback for phone field in phone invoices
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function phone_number_field($item, $name)
|
|||
{
|
|||
static $pucontact = null;
|
|||
if ($pucontact == null)
|
|||
{
|
|||
$pucontact = new Private_users_contact_Model();
|
|||
}
|
|||
if (!mb_eregi("^[0-9]+$", $item->number))
|
|||
{
|
|||
echo $item->number;
|
|||
return;
|
|||
}
|
|||
$pucontact_id = Private_phone_contacts_Controller::private_contacts_cache($item->user_id, $item->number);
|
|||
$user = new User_Model($item->user_id);
|
|||
if ($pucontact_id > 0)
|
|||
{
|
|||
$pucontact = $pucontact->find($pucontact_id);
|
|||
if ($user->id && $user->member_id == $_SESSION['member_id'])
|
|||
{
|
|||
echo '<span style="color: green;" title="' . $pucontact->contact->value . '">' .
|
|||
$pucontact->description . '</span> ';
|
|||
echo html::anchor(
|
|||
'private_phone_contacts/edit/' . $pucontact_id,
|
|||
html::image(array('src' => 'media/images/icons/gtk_edit.png')),
|
|||
array('rel' => 'dialog', 'class' => 'link_private_contact_edit',
|
|||
'title' => __('Edit'))
|
|||
);
|
|||
echo ' ' . html::anchor(
|
|||
'private_phone_contacts/delete/' . $pucontact_id,
|
|||
html::image(array('src' => 'media/images/icons/delete.png')),
|
|||
array('rel' => 'dialog', 'class' => 'link_private_contact_delete',
|
|||
'title' => __('Delete'))
|
|||
);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo '<b style="color: #888;" title="' . $pucontact->description . '">' .
|
|||
$item->number . '</b>';
|
|||
if ($pucontact->user_id)
|
|||
{
|
|||
echo ' ' . html::anchor(
|
|||
'phone_invoices/show_history/' .
|
|||
$pucontact->user_id . '/' . $item->number . '/' . $item->phone_invoice_user_id,
|
|||
html::image(array('src' => 'media/images/icons/history.png')),
|
|||
array('rel' => 'dialog', 'class' => 'link_private_contact_delete',
|
|||
'title' => __('History'))
|
|||
);
|
|||
}
|
|||
}
|
|||
}
|
|||
else
|
|||
{
|
|||
$uid = Phone_invoices_Controller::user_number_cache($item->number);
|
|||
if ($uid == 0)
|
|||
{ // number is not in database => display it and allow to add
|
|||
// b title is jused for selection of number by javascript
|
|||
echo '<b title="' . $item->number . '">' . $item->number . '</b> ';
|
|||
if ($user->id && $user->member_id == $_SESSION['member_id'])
|
|||
{
|
|||
echo html::anchor(
|
|||
'private_phone_contacts/add/' . $item->user_id . '/' . $item->number,
|
|||
html::image(array('src' => 'media/images/icons/ico_add.gif')),
|
|||
array('rel' => 'dialog', 'class' => 'link_private_contact_add',
|
|||
'title' => __('Add'))
|
|||
);
|
|||
}
|
|||
if ($item->user_id)
|
|||
{
|
|||
echo ' ' . html::anchor(
|
|||
'phone_invoices/show_history/' .
|
|||
$item->user_id . '/' . $item->number . '/' . $item->phone_invoice_user_id,
|
|||
html::image(array('src' => 'media/images/icons/history.png')),
|
|||
array('rel' => 'dialog', 'class' => 'link_private_contact_delete',
|
|||
'title' => __('History'))
|
|||
);
|
|||
}
|
|||
}
|
|||
else
|
|||
{ // number bellow to user of free net is, display his name
|
|||
$user->find($uid);
|
|||
echo '<span style="color: green;">' . $user->name . ' ' . $user->surname . '</span>';
|
|||
}
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback for private checkbox field in phone invoices
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
* @param object $input Checkbox
|
|||
*/
|
|||
public static function phone_private_checkbox($item, $name, $input)
|
|||
{
|
|||
echo $input->html();
|
|||
if ($item->private == 1)
|
|||
{
|
|||
$contact_id = Private_phone_contacts_Controller::private_contacts_cache(
|
|||
$item->user_id, $item->number
|
|||
);
|
|||
if ($contact_id > 0)
|
|||
{
|
|||
echo ' <span style="color: green">' .
|
|||
__('private contact') . '</span>';
|
|||
}
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print mode of port
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
c2e44ab0 | Michal Kliment | public static function port_mode_field($item, $name)
|
|
8baed187 | Michal Kliment | {
|
|
echo Iface_Model::get_port_mode($item->port_mode);
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* Callback function to print port VLAN
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function port_vlan_field($item, $name)
|
|||
{
|
|||
echo '<span class="help" title="'.$item->port_vlan.'">'.$item->port_vlan_tag_802_1q.'</span>';
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback function to print count of ports and grouped ports as title
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function ports_field ($item, $name)
|
|||
{
|
|||
if ($item->ports_count)
|
|||
{
|
|||
echo '<span class="help" title="'.$item->ports.'">'.$item->ports_count.'</span>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $item->ports_count;
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | ||
/**
|
|||
* Callback function to print tax-included price
|
|||
*
|
|||
* @author Jan Dubina
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function price_vat_field ($item, $name)
|
|||
{
|
|||
// is vat set?
|
|||
if (isset($item->vat))
|
|||
{
|
|||
$price = $item->$name * (1 + $item->vat);
|
|||
}
|
|||
else
|
|||
{
|
|||
$price = $item->$name;
|
|||
}
|
|||
$price = number_format($price, 2, ',', ' ') . ' ';
|
|||
$price = str_replace(' ', ' ', $price);
|
|||
// has currency?
|
|||
if (property_exists($item, 'currency'))
|
|||
{
|
|||
$price .= __($item->currency);
|
|||
}
|
|||
// default currency
|
|||
else
|
|||
{
|
|||
$price .= __(Settings::get('currency'));
|
|||
}
|
|||
echo $price;
|
|||
}
|
|||
18ac9009 | Ondřej Fibich | ||
/**
|
|||
* Callback function to print TX and RX rate of device
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function rate_field ($item, $name)
|
|||
{
|
|||
echo network::speed($item->tx_rate, 1000).' / '.network::speed($item->rx_rate, 1000);
|
|||
}
|
|||
8baed187 | Michal Kliment | ||
/**
|
|||
* Callback field for redirection.
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function redirect_field($item, $name)
|
|||
{
|
|||
echo "<span class='help' title='$item->redirect_text'>$item->redirect</span>";
|
|||
}
|
|||
/**
|
|||
* Callback field for user login.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function redirection_preview_field($item, $name)
|
|||
{
|
|||
echo html::anchor(
|
|||
url::base().'redirection/?ip_address='.$item->ip_address,
|
|||
__('Show')
|
|||
);
|
|||
}
|
|||
/**
|
|||
* Callback function to print registration state
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function registration_field ($item, $name)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | if ($item->registration && $item->registration != __('No'))
|
|
8baed187 | Michal Kliment | {
|
|
echo '<span style="color: green">'.__('Yes').'</span>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo '<span style="color: red">'.__('No').'</span>';
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* Callback function for request type.
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function request_type($item, $name)
|
|||
{
|
|||
echo Request_Model::get_type_name($item->$name);
|
|||
}
|
|||
/**
|
|||
* Callback function to print multiple applicants of membership checkbox
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function member_approve_avaiable ($item, $name)
|
|||
{
|
|||
if (condition::is_applicant_registration($item))
|
|||
{
|
|||
echo form::checkbox('toapprove[]', $item->id, FALSE, 'class="checkbox"');
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print state of login log
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function log_queues_type_field($item, $name)
|
|||
{
|
|||
echo '<b class="error_text" style="background-color:'
|
|||
. Log_queue_Model::get_type_color($item->type) . '">'
|
|||
. Log_queue_Model::get_type_name($item->type) . '<b>';
|
|||
}
|
|||
/**
|
|||
* Callback function to print state of login log
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function log_queues_state_field($item, $name)
|
|||
{
|
|||
if ($item->state == Log_queue_Model::STATE_NEW)
|
|||
{
|
|||
echo '<b style="color:green">' . __('New') . '</b>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo __('Closed');
|
|||
}
|
|||
if (isset($item->a_comment) && !empty($item->a_comment))
|
|||
{
|
|||
echo ' <span class="help" title="'.$item->a_comment.'">';
|
|||
echo html::image('media/images/icons/comment.png');
|
|||
echo '</span>';
|
|||
}
|
|||
if (isset($item->id) && isset($item->a_comment_add) && $item->a_comment_add)
|
|||
{
|
|||
$url = (isset($item->a_comments_thread_id) && $item->a_comments_thread_id) ?
|
|||
'comments/add/'.$item->a_comments_thread_id :
|
|||
7dafd607 | Michal Kliment | 'comments/add_thread/log_queue/'.$item->id;
|
|
c1bdc1c4 | Michal Kliment | ||
echo ' ' . html::anchor($url, html::image('media/images/icons/ico_add.gif'), array
|
|||
(
|
|||
'title' => __('Add comment'),
|
|||
'class' => 'popup_link'
|
|||
));
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback function to print name of segment's item
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function link_item_field ($item, $name)
|
|||
{
|
|||
echo html::anchor('ifaces/show/'.$item->id, $item->name);
|
|||
}
|
|||
/**
|
|||
* Callback to print segment medium
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function link_medium_field ($item, $name)
|
|||
{
|
|||
echo Link_Model::get_medium_type($item->medium);
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | /**
|
|
* Callback to print segment medium as icon
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function link_medium_icon_field ($item, $name)
|
|||
{
|
|||
switch ($item->medium)
|
|||
{
|
|||
case Link_Model::MEDIUM_SINGLE_FIBER:
|
|||
case Link_Model::MEDIUM_MULTI_FIBER:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/sfp.png',
|
|||
'title' => Link_Model::get_medium_type($item->medium)
|
|||
));
|
|||
break;
|
|||
case Link_Model::MEDIUM_CABLE:
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/ifaces/tp.png',
|
|||
'title' => Link_Model::get_medium_type($item->medium)
|
|||
));
|
|||
break;
|
|||
}
|
|||
}
|
|||
8baed187 | Michal Kliment | /**
|
|
* Callback function to print SMS receiver
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function sms_receiver_field ($item, $name)
|
|||
{
|
|||
if ($item->receiver_id)
|
|||
{
|
|||
echo html::anchor(
|
|||
url_lang::base().'users/show/'.$item->receiver_id,
|
|||
$item->receiver_name,
|
|||
array('title' => $item->receiver)
|
|||
);
|
|||
}
|
|||
else
|
|||
echo $item->receiver;
|
|||
}
|
|||
/**
|
|||
* Callback function to print SMS sender
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function sms_sender_field ($item, $name)
|
|||
{
|
|||
if ($item->sender_id)
|
|||
{
|
|||
echo html::anchor(
|
|||
url_lang::base().'users/show/'.$item->sender_id,
|
|||
$item->sender_name,
|
|||
array('title' => $item->sender)
|
|||
);
|
|||
}
|
|||
else
|
|||
echo $item->sender;
|
|||
}
|
|||
/**
|
|||
* Callback for traffic field
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function traffic_field($item, $name)
|
|||
{
|
|||
echo network::size($item->$name);
|
|||
}
|
|||
/**
|
|||
* Callback function to download traffic
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function traffic_download_field($item, $name)
|
|||
{
|
|||
echo network::size($item->$name).' '.html::image(array('src' => url::base().'media/images/icons/download.png'));
|
|||
}
|
|||
/**
|
|||
* Callback function to upload traffic
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function traffic_upload_field($item, $name)
|
|||
{
|
|||
echo html::image(array('src' => url::base().'media/images/icons/upload.png')).' '.network::size($item->$name);
|
|||
}
|
|||
/**
|
|||
* Callback for transfer
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function transfer_link($item, $name)
|
|||
{
|
|||
if (isset($item->transfer_id, $item->amount) && $item->transfer_id)
|
|||
{
|
|||
echo html::anchor(
|
|||
'transfers/show/' . $item->transfer_id,
|
|||
number_format($item->amount, 2, ',', ' ') .
|
|||
' ' . __(Settings::get('currency'))
|
|||
);
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback to print value of used (e. g. used of ip addresses in subnet)
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function used_field ($item, $name)
|
|||
{
|
|||
$color = '';
|
|||
if ($item->used > 80)
|
|||
$color = 'red';
|
|||
if ($item->used < 20)
|
|||
$color = 'green';
|
|||
echo ($color != '') ?
|
|||
'<span style="color: '.$color.'">'.$item->used.' %</span>' :
|
|||
$item->used.' %';
|
|||
}
|
|||
/**
|
|||
* Callback function to print traffic field in ulogd
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function ulogd_traffic_field($item, $name)
|
|||
{
|
|||
echo "<span";
|
|||
if (!$item->member_id && network::ip_address_in_ranges($item->ip_address))
|
|||
echo " class='red'";
|
|||
echo ">";
|
|||
self::traffic_field($item, $name);
|
|||
echo "</span>";
|
|||
}
|
|||
/**
|
|||
* Callback function to print order number field in ulogd
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
* @param array $args
|
|||
*/
|
|||
public static function ulogd_order_number_field($item, $name, $args = array())
|
|||
{
|
|||
echo "<span";
|
|||
if (!$item->member_id && network::ip_address_in_ranges($item->ip_address))
|
|||
echo " class='red'";
|
|||
echo ">";
|
|||
self::order_number_field($item, $name, $args);
|
|||
echo "</span>";
|
|||
}
|
|||
/**
|
|||
* Callback function to print ip address field in ulogd
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function ulogd_ip_address_field($item, $name)
|
|||
{
|
|||
echo "<span";
|
|||
if (!$item->member_id && network::ip_address_in_ranges($item->ip_address))
|
|||
echo " class='red'";
|
|||
echo ">";
|
|||
echo $item->ip_address;
|
|||
echo "</span>";
|
|||
}
|
|||
/**
|
|||
* Callback function to print member field in ulogd
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
* @param array $args
|
|||
*/
|
|||
public static function ulogd_member_field($item, $name, $args = array())
|
|||
{
|
|||
echo "<span";
|
|||
if (!$item->member_id && network::ip_address_in_ranges($item->ip_address))
|
|||
echo " class='red'";
|
|||
echo ">";
|
|||
self::member_field($item, $name, $args);
|
|||
echo "</span>";
|
|||
}
|
|||
/**
|
|||
* Callback field for user name of user given by id.
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function user_id_log_field($item, $name)
|
|||
{
|
|||
$user = new User_Model($item->user_id);
|
|||
if ($user->id)
|
|||
{
|
|||
echo html::anchor('users/show/'.$user->id, $user->get_full_name());
|
|||
echo ' ';
|
|||
echo html::anchor('logs/show_by_user/'.$user->id, html::image(array
|
|||
(
|
|||
'src' => 'media/images/icons/history.png',
|
|||
'title' => __('Show user actions')
|
|||
)));
|
|||
}
|
|||
else
|
|||
{
|
|||
echo $item->user_id;
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback for values of log
|
|||
*
|
|||
* @author Ondřej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function value_log_field($item, $name)
|
|||
{
|
|||
if (!empty($item->values))
|
|||
{
|
|||
$array = json_decode($item->values);
|
|||
foreach ($array as $key => $value)
|
|||
{
|
|||
echo htmlspecialchars($key) .' = '.
|
|||
htmlspecialchars($value) . '<br />';
|
|||
}
|
|||
}
|
|||
}
|
|||
18ac9009 | Ondřej Fibich | ||
public static function verified_contact($item , $name)
|
|||
{
|
|||
if ($item->type == Contact_Model::TYPE_EMAIL)
|
|||
{
|
|||
if ($item->verify == 1)
|
|||
{
|
|||
echo "<span class=\"more\" title=\"".__('Contact verified')."\">" . $item->value."</span>";
|
|||
}
|
|||
else
|
|||
{
|
|||
echo "<span class=\"more notverified\" title=\"".__('Contact not verified')."\">" . $item->value."</span>";
|
|||
}
|
|||
return;
|
|||
}
|
|||
echo $item->value;
|
|||
}
|
|||
8baed187 | Michal Kliment | ||
/**
|
|||
* Callback function to print VLANS count with preview of names
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function vlans_field ($item, $name)
|
|||
{
|
|||
if ($item->vlans_count)
|
|||
echo '<span class="help" title="'.$item->vlans.'">'.$item->vlans_count.'</span>';
|
|||
else
|
|||
echo $item->vlans_count;
|
|||
}
|
|||
/**
|
|||
* Callback function to show vote as image
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function vote($item, $name)
|
|||
{
|
|||
switch ($item->vote)
|
|||
{
|
|||
case 1:
|
|||
$img = 'agree';
|
|||
break;
|
|||
case -1:
|
|||
$img = 'disagree';
|
|||
break;
|
|||
case 0:
|
|||
$img = 'abstain';
|
|||
break;
|
|||
}
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/states/' . $img . '.png',
|
|||
'alt' => __($img),
|
|||
'title' => __($img),
|
|||
'id' => 'i' . $item->id
|
|||
));
|
|||
}
|
|||
/**
|
|||
* Callback to print vote state with vote comments as title
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function vote_state_field ($item, $name)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | echo "<span style='color: ".Vote_Model::get_state_color($item->state)."'>";
|
|
echo Vote_Model::get_state_name($item->state);
|
|||
echo "</span>";
|
|||
echo " (";
|
|||
8baed187 | Michal Kliment | if (property_exists($item, 'vote_comments'))
|
|
{
|
|||
echo "<span title='$item->vote_comments' class='help'>";
|
|||
}
|
|||
echo '<span style="color: green">'.$item->agree_count.'</span>';
|
|||
echo '/';
|
|||
echo '<span style="color: red">'.$item->disagree_count.'</span>';
|
|||
echo '/';
|
|||
echo $item->abstain_count;
|
|||
if (property_exists($item, 'vote_comments'))
|
|||
{
|
|||
echo "</span>";
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | ||
echo ")";
|
|||
8baed187 | Michal Kliment | }
|
|
/**
|
|||
* Callback function to print week
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function week_field ($item, $name)
|
|||
{
|
|||
$start = date::start_of_week($item->week, $item->year);
|
|||
$end = date::end_of_week($item->week, $item->year);
|
|||
echo '<span title="'.$start. ' - ' . $end.'">'.$item->week.'.</span>';
|
|||
}
|
|||
/**
|
|||
* Callback field for correct view of whitelisted option of ip address.
|
|||
*
|
|||
* @author Jiri Svitak
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function whitelisted_field($item, $name)
|
|||
{
|
|||
switch ($item->whitelisted)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | case Ip_address_Model::PERMANENT_WHITELIST:
|
|
8baed187 | Michal Kliment | echo __('Permanent whitelist');
|
|
break;
|
|||
case Ip_address_Model::TEMPORARY_WHITELIST:
|
|||
echo __('Temporary whitelist');
|
|||
break;
|
|||
default:
|
|||
echo __('No whitelist');
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback function to print mode of wireless interface
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function wireless_mode ($item, $name)
|
|||
{
|
|||
echo Iface_Model::get_wireless_mode($item->$name);
|
|||
}
|
|||
/**
|
|||
* Callback function to print frequence of wireless segment
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param type $item
|
|||
* @param type $name
|
|||
*/
|
|||
public static function wireless_segment_frequence ($item, $name)
|
|||
{
|
|||
$class = $title = '';
|
|||
if ($item->channel != '')
|
|||
{
|
|||
$class = 'help';
|
|||
$title = __('Channel %s', $item->channel);
|
|||
}
|
|||
echo "<span class='$class' title='$title'>$item->frequence MHz</span>";
|
|||
}
|
|||
/**
|
|||
* Callback function to print norm of wireless segment
|
|||
*
|
|||
* @author Michal Kliment
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function wireless_link_norm ($item, $name)
|
|||
{
|
|||
echo Link_Model::get_wireless_norm($item->wireless_norm);
|
|||
}
|
|||
/**
|
|||
* Callback for true false values.
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function work_approved($item, $name)
|
|||
{
|
|||
$bool = $item->$name;
|
|||
echo html::image(array
|
|||
(
|
|||
'src' => 'media/images/states/' . ($bool ? 'agree.png' : 'disagree.png')
|
|||
));
|
|||
}
|
|||
/**
|
|||
* Callback for work report rating
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function work_report_rating($item, $name)
|
|||
{
|
|||
$rating = $item->$name;
|
|||
if (is_numeric($rating))
|
|||
{
|
|||
echo html::anchor(
|
|||
'transfers/show/'.$item->transfer_id,
|
|||
number_format($rating, 2, ',', ' ').' '.
|
|||
__(Settings::get('currency'))
|
|||
);
|
|||
}
|
|||
else
|
|||
{
|
|||
echo '<span class="red">' . $rating . '</span>';
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback for work report type
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function work_report_type($item, $name)
|
|||
{
|
|||
$type = $item->$name;
|
|||
if ($type && preg_match("/^[0-9]{4}-[0-9]{1,2}$/", $type))
|
|||
{
|
|||
$date = explode('-', $type);
|
|||
echo '<span title="' . __('Work report per month') . '" class="more">' . __('MWR', '', 3) . '</span> ';
|
|||
echo __('for', '', 1);
|
|||
echo ' <b>' . __(date::$months[intval($date[1])]) . ' ' . $date[0] . '</b>';
|
|||
}
|
|||
else
|
|||
{
|
|||
echo '<span title="' . __('Grouped works') . '" class="more">' . __('GW', '', 3) . '</span> ';
|
|||
echo __('since', '', 1) . ' ';
|
|||
echo date('j.n.Y', strtotime($item->date_from)) . ' ';
|
|||
echo __('until', '', 1) . ' ';
|
|||
echo date('j.n.Y', strtotime($item->date_to));
|
|||
}
|
|||
}
|
|||
/**
|
|||
* Callback for work reports. Displayes votes of a voter on a report.
|
|||
*
|
|||
* @author Ondrej Fibich
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function votes_of_voter($item, $name)
|
|||
{
|
|||
static $job_report_model = NULL;
|
|||
if (isset($item->user_id, $item->id))
|
|||
{
|
|||
if ($job_report_model == NULL)
|
|||
{
|
|||
$job_report_model = new Job_report_Model();
|
|||
}
|
|||
$votes = $job_report_model->get_votes_of_voter_on_work_report(
|
|||
$item->id, Session::instance()->get('user_id')
|
|||
);
|
|||
if ($votes->count())
|
|||
c1bdc1c4 | Michal Kliment | {
|
|
$tvotes = array
|
|||
(
|
|||
Vote_Model::DISAGREE => 0,
|
|||
Vote_Model::ABSTAIN => 0,
|
|||
Vote_Model::AGREE => 0
|
|||
);
|
|||
8baed187 | Michal Kliment | $count_votes = 0;
|
|
$icon = 'abstain';
|
|||
foreach ($votes as $vote)
|
|||
{
|
|||
if ($vote->id)
|
|||
{
|
|||
$count_votes++;
|
|||
$tvotes[$vote->vote]++;
|
|||
}
|
|||
}
|
|||
if ($count_votes > 0)
|
|||
{
|
|||
c1bdc1c4 | Michal Kliment | $max = max(array
|
|
(
|
|||
$tvotes[Vote_Model::DISAGREE],
|
|||
$tvotes[Vote_Model::AGREE],
|
|||
$tvotes[Vote_Model::ABSTAIN]
|
|||
));
|
|||
if ($max == $tvotes[Vote_Model::DISAGREE])
|
|||
{
|
|||
$icon = 'disagree';
|
|||
}
|
|||
else if ($max == $tvotes[Vote_Model::AGREE])
|
|||
{
|
|||
$icon = 'agree';
|
|||
}
|
|||
8baed187 | Michal Kliment | }
|
|
echo '<img alt="voted" src="' . url::base() . '/media/images/states/' . $icon . '.png" title="';
|
|||
if ($count_votes > 0)
|
|||
{
|
|||
echo __('You have voted in') . ' ' . $count_votes . ' ' . __('of') . ' ' . $votes->count() . "\n";
|
|||
c1bdc1c4 | Michal Kliment | echo __('Your votes') . ': ' . $tvotes[Vote_Model::AGREE] . '/'
|
|
. $tvotes[Vote_Model::DISAGREE] . '/' . $tvotes[Vote_Model::ABSTAIN];
|
|||
8baed187 | Michal Kliment | echo ' (' . __('Agree') . '/' . __('Disagree') . '/' . __('Abstain') . ')';
|
|
}
|
|||
echo '" />';
|
|||
}
|
|||
}
|
|||
}
|
|||
c1bdc1c4 | Michal Kliment | ||
/**
|
|||
* Replaces {ip_address} tag with device's first IP address
|
|||
*
|
|||
* @param string $url_pattern URL pattern
|
|||
* @param integer $device_id Device ID
|
|||
* @return string
|
|||
*/
|
|||
public static function device_active_link_url_prepare($url_pattern, $device_id)
|
|||
{
|
|||
$controller = Controller::instance();
|
|||
$dm = new Device_Model($device_id);
|
|||
$ip_address_model = new Ip_address_Model();
|
|||
$ips = $ip_address_model->get_ip_addresses_of_device($device_id);
|
|||
// replace {ip_address}
|
|||
if ($ips->current() && $ips->current()->ip_address)
|
|||
{
|
|||
$url_pattern = str_replace('{ip_address}', $ips->current()->ip_address, $url_pattern);
|
|||
$sm = new Subnet_Model();
|
|||
$subnet = $sm->get_subnet_of_ip_address($ips->current()->ip_address);
|
|||
if ($subnet && $subnet->id)
|
|||
{
|
|||
$gw = $dm->get_gateway_of_subnet($subnet->id);
|
|||
if ($gw && $gw->id)
|
|||
{
|
|||
$gw_ip = $ip_address_model->get_ip_addresses_of_device($gw->id);
|
|||
if ($gw_ip->current() && $gw_ip->current()->ip_address)
|
|||
{
|
|||
$url_pattern = str_replace('{gateway_ip}', $gw_ip->current()->ip_address, $url_pattern);
|
|||
}
|
|||
}
|
|||
}
|
|||
}
|
|||
if ($controller->acl_check_view('Devices_Controller', 'login') &&
|
|||
$dm->login);
|
|||
{
|
|||
$url_pattern = str_replace('{login}', $dm->login, $url_pattern);
|
|||
}
|
|||
if ($controller->acl_check_view('Devices_Controller', 'password') &&
|
|||
$dm->password);
|
|||
{
|
|||
$url_pattern = str_replace('{password}', $dm->password, $url_pattern);
|
|||
}
|
|||
return $url_pattern;
|
|||
}
|
|||
/**
|
|||
* Callback for printing device's active links
|
|||
*
|
|||
* @param object $item
|
|||
* @param string $name
|
|||
*/
|
|||
public static function device_active_links($item, $name)
|
|||
{
|
|||
$device_active_links_model = new Device_active_link_Model();
|
|||
$active_links = $device_active_links_model->get_device_active_links($item->id);
|
|||
$links = array();
|
|||
foreach ($active_links AS $al)
|
|||
{
|
|||
$link = '';
|
|||
if (($name == 'show_by_user' && $al->show_in_user_grid) ||
|
|||
($name == 'device_grid' && $al->show_in_grid) ||
|
|||
$name == 'device_show'
|
|||
)
|
|||
{
|
|||
$url = callback::device_active_link_url_prepare(htmlspecialchars_decode($al->url_pattern), $item->id);
|
|||
if ($url !== NULL)
|
|||
{
|
|||
if ($al->as_form)
|
|||
{
|
|||
// create link using POST method
|
|||
$p = explode('?', $url);
|
|||
if (isset($p[0]))
|
|||
{
|
|||
$url = $p[0];
|
|||
}
|
|||
if (isset($p[1]))
|
|||
{
|
|||
// create form
|
|||
parse_str($p[1], $qs);
|
|||
$link = '<form target="_blank" action="'.$url.'" method="post" enctype="multipart/form-data">';
|
|||
foreach ($qs AS $k => $v)
|
|||
{
|
|||
$link .= '<input type="hidden" name="'.$k.'" value="'.$v.'">';
|
|||
}
|
|||
$link .= '<a class="as_form" href="'.$url.'" title="'.$al->title.'">'.($al->name? $al->name : $url).'</a></form>';
|
|||
}
|
|||
}
|
|||
else
|
|||
{
|
|||
// create link using GET method
|
|||
$link = '<div><a href="'.$url.'" title="'.$al->title.'" target="_blank">'.($al->name? $al->name : $url).'</a></div>';
|
|||
}
|
|||
if ($link)
|
|||
{
|
|||
$links[] = $link;
|
|||
}
|
|||
}
|
|||
}
|
|||
}
|
|||
echo implode($links);
|
|||
}
|
|||
8baed187 | Michal Kliment | }
|