예제 #1
0
파일: plugin.php 프로젝트: kaantunc/MYK-BOR
 /**
  * Create a 4x<td> row with tooltip, empty td, title & select drop-down
  *
  * @param $title string title
  * @param $name string field name
  * @param $selected string/array field value(s)
  * @param $attributes string additional input attributes
  * @param $tooltip string tooltip
  * @param $id string
  * @param $translate boolean apply JText?
  *
  */
 function createSelectTD($title, $name, $options, $selected = '', $attributes = '', $tooltip = '', $id = false)
 {
     $return = ChronoContactHelperPlugin::createTitleTD($title, $tooltip);
     $translate = false;
     $return .= ChronoContactHelperPlugin::createSelect($name, $options, $selected, $attributes, $id, $translate);
     return $return;
 }