File: /var/www/apklausos/application/extensions/yiiwheels/behaviors/WhPlugin.php
<?php
/**
* WhPlugin class file.
* Extends the plugins with common shared methods.
*
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @copyright Copyright © Antonio Ramirez 2013-
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
* @package yiiwheels.behaviors
*/
class WhPlugin extends CBehavior
{
protected $_assetsUrl;
protected static $_api;
protected static $_wheels;
/**
* Returns
* @param $path
* @return mixed
*/
public function getAssetsUrl($path)
{
if (isset($this->_assetsUrl)) {
return $this->_assetsUrl;
} else {
$forceCopyAssets = $this->getApi()->forceCopyAssets;
$assetsUrl = Yii::app()->assetManager->publish($path, false, -1, $forceCopyAssets);
return $this->_assetsUrl = $assetsUrl;
}
}
/**
* @return TbApi
*/
public function getApi()
{
if (self::$_api === null) {
self::$_api = self::getYiiWheels()->getApi();
}
return self::$_api;
}
/**
* Returns the main component
* @return YiiWheels
*/
public function getYiiWheels()
{
if (self::$_wheels === null) {
self::$_wheels = Yii::app()->getComponent('yiiwheels');
}
return self::$_wheels;
}
}