Document.php 935 Bytes
<?php
/**
 * @package         Better Preview
 * @version         6.1.0
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            http://www.regularlabs.com
 * @copyright       Copyright © 2018 Regular Labs All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */

namespace RegularLabs\Plugin\System\BetterPreview;

defined('_JEXEC') or die;

use JHtml;
use JText;
use RegularLabs\Library\Document as RL_Document;
use RegularLabs\Library\StringHelper as RL_String;

/**
 ** Plugin that places the button
 */
class Document
{
	public static function loadScriptsAndCSS()
	{
		JHtml::_('jquery.framework');
		JHtml::_('bootstrap.tooltip');

		RL_Document::script('regularlabs/script.min.js');
		RL_Document::script('betterpreview/script.min.js', '6.1.0');
		RL_Document::style('regularlabs/style.min.css');
		RL_Document::style('betterpreview/style.min.css', '6.1.0');

	}
}