AbstractPlugin.php
1.96 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
/**
* @package AllediaFramework
* @contact www.alledia.com, hello@alledia.com
* @copyright 2016 Alledia.com, All rights reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
namespace Alledia\Framework\Joomla\Extension;
defined('_JEXEC') or die();
use Alledia\Framework\Factory;
use JPlugin;
use JFactory;
jimport('joomla.plugin.plugin');
abstract class AbstractPlugin extends JPlugin
{
/**
* Alledia Extension instance
*
* @var object
*/
protected $extension;
/**
* Library namespace
*
* @var string
*/
protected $namespace;
/**
* Method used to load the extension data. It is not on the constructor
* because this way we can avoid to load the data if the plugin
* will not be used.
*
* @return void
*/
protected function init()
{
$this->loadExtension();
// Load the libraries, if existent
$this->extension->loadLibrary();
$this->loadLanguage();
}
/**
* Method to load the language files
*
* @return void
*/
public function loadLanguage($extension = '', $basePath = JPATH_ADMINISTRATOR)
{
parent::loadLanguage($extension, $basePath);
$languagePath = JPATH_SITE . '/plugins/' . $this->_type . '/' . $this->_name;
$languageFile = 'plg_' . $this->_type . '_' . $this->_name . '.sys';
$language = JFactory::getLanguage();
$language->load($languageFile, $languagePath);
}
/**
* Method to load the extension data
* @return void
*/
protected function loadExtension()
{
if (!isset($this->extension)) {
$this->extension = Factory::getExtension($this->namespace, 'plugin', $this->_type);
}
}
/**
* Check if this extension is licensed as pro
*
* @return boolean True for pro version
*/
protected function isPro()
{
return $this->extension->isPro();
}
}