Current Path :
/
home
/
develito
/
httpdocs
/
modules
/
mod_quickform
/
fields
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/httpdocs/modules/mod_quickform/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_quickform/js/qf_mod.js"); $this->lang = JFactory::getLanguage(); $this->lang->load('com_quickform'); } } ?>