| Current Path : /home/juvelize/www/modules/mod_jimmo_loan_budget_calculator/php/ |
| Current File : /home/juvelize/www/modules/mod_jimmo_loan_budget_calculator/php/asset.php |
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport('joomla.form.formfield');
class JFormFieldAsset extends JFormField
{
protected $type = 'Asset';
protected function getInput() {
$doc = JFactory::getDocument();
$doc->addStyleSheet(JURI::root() . 'modules/mod_jimmo_loan_budget_calculator/css/admin_style.css');
return null;
}
}
?>