Your IP : 10.10.0.253


Current Path : /var/www/modules/mod_qf3/fields/
Upload File :
Current File : /var/www/modules/mod_qf3/fields/addscript.php

<?php
/**
* @package		Joomla
* @Copyright ((c) bigemot.ru
* @license    GNU/GPL
*/
defined('JPATH_PLATFORM') or die;

class JFormFieldAddscript extends JFormField
{
    protected $type = 'Addscript';

    protected function getInput()
    {
        $doc = JFactory::getDocument();
        $doc->addScript(JURI::root(true) . "/modules/mod_qf3/qf_mod.js");
    }
}