Files
crm.e5.pl/include/Smarty/plugins/function.sugar_button_slider.php

52 lines
1.8 KiB
PHP
Raw Normal View History

2024-04-27 09:23:34 +02:00
<?php
/**
* smarty_function_sugar_button
* This is the constructor for the Smarty plugin.
*
* @param $params The runtime Smarty key/value arguments
* @param $smarty The reference to the Smarty object used in this invocation
*/
function smarty_function_sugar_button_slider($params, &$smarty)
{
if(empty($params['module'])) {
$smarty->trigger_error("sugar_button_slider: missing required param (module)");
} else if(empty($params['buttons'])) {
$smarty->trigger_error("sugar_button_slider: missing required param (buttons)");
} else if(empty($params['view'])) {
$smarty->trigger_error("sugar_button_slider: missing required param (view)");
}
$module = $params['module'];
$view = $params['view'];
$buttons = $params['buttons'];
$str = '';
if(is_array($buttons)) {
if(count($buttons) <= 2){
foreach($buttons as $val => $button){
$str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty);
}
}else{
$str = '<div id="buttonSlide" class="yui-module">';
$str .= '<table border="0">';
$str .='<tr><td>';
$str .='<div class="yui-hd">';
for($i = 0; $i < 2; $i++){
$button = $buttons[$i];
$str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty);
$str .= ' ';
}
$str .= '</div></td>';
$str .='<td align="right"> <div class="yui-bd">';
for($i = 2; $i < count($buttons); $i++){
$button = $buttons[$i];
$str .= smarty_function_sugar_button(array('module' => $module, 'id' => $button, 'view' => $view), $smarty);
$str .= ' ';
}
$str .='</div></td>';
$str .='</tr></table>';
}
}
return $str;
}
?>