loadLanguage(); } /** * Display the button * * @return array A two element array of (imageName, textToInsert) */ public function onDisplay($name) { $app = JFactory::getApplication(); $doc = JFactory::getDocument(); $template = $app->getTemplate(); $link = 'index.php?option=com_cpeventcalendar&task=insert&view=insert&e_name='.$name; JHTML::_('behavior.modal'); $button = new JObject(); $button->class = 'btn'; $button->set('modal', true); $button->set('link', $link); $button->set('text', JText::_('EventCalendar')); $button->set('name', 'blank'); $button->set('options', "{handler: 'iframe', size: {x: 400, y: 220}}"); return $button; } }