Your IP : 216.73.216.218


Current Path : /home/antonen/chenglong.lt/plugins/system/miniteksystemmessages/admin/fields/
Upload File :
Current File : /home/antonen/chenglong.lt/plugins/system/miniteksystemmessages/admin/fields/asset.php

<?php
/**
* @title			Minitek System Messages
* @copyright   		Copyright (C) 2011-2017 Minitek, All rights reserved.
* @license   		GNU General Public License version 3 or later.
* @author url   	https://www.minitek.gr/
* @developers   	Minitek.gr / Yannis Maragos
*/

// no direct access
defined('_JEXEC') or die('Restricted access');

jimport('joomla.form.formfield');

class JFormFieldAsset extends JFormField 
{
    protected $type = 'Asset';
	
    protected function getInput() 
	{
        $document = JFactory::getDocument();
        $document->addStyleSheet(JURI::root().$this->element['path'].'style.css'); 
  
		return null;
    }
}