File: /var/www/vhosts/pgkdistribution.com.au/citisolar.com.au/plugins/editors-xtd/pagebreak/pagebreak.php
<?php
/**
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die;
/**
* Editor Pagebreak buton
*
* @package Joomla.Plugin
* @subpackage Editors-xtd.pagebreak
* @since 1.5
*/
class plgButtonPagebreak extends JPlugin
{
/**
* Constructor
*
* @access protected
* @param object $subject The object to observe
* @param array $config An array that holds the plugin configuration
* @since 1.5
*/
public function __construct(& $subject, $config)
{
parent::__construct($subject, $config);
$this->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_content&view=article&layout=pagebreak&tmpl=component&e_name='.$name;
JHtml::_('behavior.modal');
$button = new JObject;
$button->set('modal', true);
$button->set('link', $link);
$button->set('text', JText::_('PLG_EDITORSXTD_PAGEBREAK_BUTTON_PAGEBREAK'));
$button->set('name', 'pagebreak');
$button->set('options', "{handler: 'iframe', size: {x: 400, y: 100}}");
return $button;
}
}