betterpreview.php
1.32 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?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
*/
defined('_JEXEC') or die;
// Do not instantiate plugin on install pages
// to prevent installation/update breaking because of potential breaking changes
if (
in_array(JFactory::getApplication()->input->get('option'), ['com_installer', 'com_regularlabsmanager'])
&& JFactory::getApplication()->input->get('action') != ''
)
{
return;
}
if ( ! is_file(__DIR__ . '/vendor/autoload.php'))
{
return;
}
require_once __DIR__ . '/vendor/autoload.php';
use RegularLabs\Plugin\System\BetterPreview\Plugin;
class PlgSystemBetterPreview extends Plugin
{
public $_alias = 'betterpreview';
public $_title = 'BETTER_PREVIEW';
public $_lang_prefix = 'BP';
public $_enable_in_admin = true;
public $_page_types = ['html'];
/*
* Below are the events that this plugin uses
* All handling is passed along to the parent run method
*/
public function onAfterRoute()
{
$this->run();
}
public function onContentPrepare()
{
$this->run();
}
public function onAfterRender()
{
$this->run();
}
}