Файловый менеджер - Редактировать - /home/lmsyaran/public_html/administrator/components/com_rsmembership/models/fields/fixedexpiry.php
Назад
<?php /** * @package RSMembership! * @copyright (c) 2009 - 2016 RSJoomla! * @link https://www.rsjoomla.com * @license GNU General Public License http://www.gnu.org/licenses/gpl-3.0.en.html */ defined('_JEXEC') or die('Restricted access'); class JFormFieldFixedExpiry extends JFormField { protected $type = 'FixedExpiry'; public function getInput() { $disabled = (empty($this->value[0]) ? ' disabled="disabled"' : ''); $checked = (isset($this->value[3]) && $this->value[3] == 1 ? ' checked="checked"' : ''); $days = $this->getDays(); $months = $this->getMonths(); $years = $this->getYears(); $date = JFactory::getDate()->toUnix(); // setting the default value if( empty($this->value) ) $this->value = array(0, date('d', $date), date('m', $date), date('Y', $date) ); return JHtml::_('select.genericlist', $days, $this->name.'[]', ' class="'.$this->element['class'].'" '.$disabled, 'value', 'text', $this->value[0], $this->id.'0'). JHtml::_('select.genericlist', $months, $this->name.'[]', ' class="'.$this->element['class'].'" '.$disabled, 'value', 'text', $this->value[1], $this->id.'1'). JHtml::_('select.genericlist', $years, $this->name.'[]', ' class="'.$this->element['class'].'" '.$disabled, 'value', 'text', $this->value[2], $this->id.'2').' <label for="'.$this->id.'3" class="rsmembership_after_input checkbox"><input type="checkbox" name="'.$this->name.'[]'.'" id="'.$this->id.'3" value="1" '.$checked.' class="input-tiny" />'.JText::_('COM_RSMEMBERSHIP_MEMBERSHIP_ENABLE_FIXED_EXPIRY').'</label>'; } protected function getDays() { $return = array(); $tmp = new stdClass(); $tmp->value = 0; $tmp->text = JText::_('COM_RSMEMBERSHIP_EVERY_DAY'); $return[] = $tmp; for ($i=1; $i<=31; $i++) { $tmp = new stdClass(); $tmp->value = $i; $tmp->text = $i; $return[] = $tmp; } return $return; } protected function getMonths() { $return = array(); $tmp = new stdClass(); $tmp->value = 0; $tmp->text = JText::_('COM_RSMEMBERSHIP_EVERY_MONTH'); $return[] = $tmp; for ($i=1; $i<=12; $i++) { $tmp = new stdClass(); $tmp->value = $i; $tmp->text = JText::_('COM_RSMEMBERSHIP_MONTH_'.$i); $return[] = $tmp; } return $return; } protected function getYears() { $return = array(); $tmp = new stdClass(); $tmp->value = 0; $tmp->text = JText::_('COM_RSMEMBERSHIP_EVERY_YEAR'); $return[] = $tmp; // $max = date('Y', RSMembershipHelper::getCurrentDate()); $max = RSMembershipHelper::showDate(time(),'Y'); for ($i=$max; $i<=$max+50; $i++) { $tmp = new stdClass(); $tmp->value = $i; $tmp->text = $i; $return[] = $tmp; } return $return; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка