%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11584/root/var/www/html/old/plugins/system/yt/includes/site/elements/ |
Upload File : |
<?php // Ensure this file is being included by a parent file defined('_JEXEC') or die( 'Restricted access' ); class JFormFieldDepend extends JFormField { /** * Element name * * @access protected * @var string */ protected $type = 'depend'; protected function getInput(){ $func = (string)$this->element['function'] ? (string)$this->element['function'] : ''; $value = $this->value ? $this->value : (string) $this->element['default']; if (substr($func, 0, 1) == '@'){ $func = substr($func, 1); if (method_exists($this, $func)) { return $this->$func(); } } else { $subtype = ( isset( $this->element['subtype'] ) ) ? trim($this->element['subtype']) : ''; if (method_exists ($this, $subtype)) { return $this->$subtype (); } } return; } function radio(){ preg_match_all('/jform\\[([^\]]*)\\]/', $this->name, $matches); $group_name = 'jform'; if(isset($matches[1]) && !empty($matches[1])): ?> <script type="text/javascript"> jQuery(document).ready(function(){ arr = new Array(); <?php $option = $this->element->children(); $i = 0; foreach ($this->element->children() as $option): $elms = preg_replace('/\s+/', '', (string)$option[0]); ?> arr['<?php echo $i; ?>'] = new Array('<?php echo $option['value']; ?>', '<?php echo $elms?>'); <?php $i++; endforeach; ?> YTDepend.radio('#jform_params_<?php echo $option[0]['for']; ?>', arr); }); </script> <?php endif; } function radio2(){ preg_match_all('/jform\\[([^\]]*)\\]/', $this->name, $matches); $group_name = 'jform'; if(isset($matches[1]) && !empty($matches[1])): ?> <script type="text/javascript"> jQuery(document).ready(function(){ arr = new Array(); <?php $option = $this->element->children(); $i = 0; foreach ($this->element->children() as $option): $elms = preg_replace('/\s+/', '', (string)$option[0]); ?> arr['<?php echo $i; ?>'] = new Array('<?php echo $option['value']; ?>', '<?php echo $elms?>'); <?php $i++; endforeach; ?> YTDepend.radio2('#jform_params_<?php echo $option[0]['for']; ?>', arr); }); </script> <?php endif; } }