Document.php
935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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');
}
}