* @copyright 2020 Copyright XEHub Corp. * @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL * @link https://xpressengine.io */ namespace App\Facades; use Illuminate\Support\Facades\Facade; /** * Class XePlugin * * @category Plugin * @package Xpressengine\Plugin * @author XE Developers * @copyright 2020 Copyright XEHub Corp. * @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL * @link https://xpressengine.io * @see Xpressengine\Plugin\PluginHandler */ class XePlugin extends Facade { const STATUS_ACTIVATED = 'activated'; const STATUS_DEACTIVATED = 'deactivated'; const STATUS_INSTALLED = 'installed'; /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'xe.plugin'; } }