コード例 #1
0
 /**
  * Renders title.
  * @return string
  */
 protected function renderTitleContent()
 {
     $title = ZurmoHtml::tag('h3', array(), Zurmo::t('CalendarsModule', 'My Shared Calendars'));
     $link = ZurmoHtml::link(ZurmoHtml::tag('span', array('class' => 'z-label'), 'Y'), '#', array('class' => 'white-button selectsharedcal'));
     $content = ZurmoHtml::tag('div', array('class' => 'cal-list-header clearfix'), $title . $link);
     $script = CalendarUtil::registerSharedCalendarModalScript(Yii::app()->createUrl('calendars/default/modalList'), '.selectsharedcal');
     Yii::app()->clientScript->registerScript('selectsharedcalscript', $script, ClientScript::POS_END);
     return $content;
 }