日历表单字段类型Joomla中的日期格式问题

时间:2014-03-07 10:22:50

标签: php joomla joomla2.5

我遇到了Joomla Calendar form field类型的问题,这是我的代码:

<field name="date" type="calendar" label="Date (*)"
            class="inputbox required" size="22"
            format="%Y-%m-%d"  labelclass="control-label" readonly="true" default="NOW"  
        />

我要做的是在此字段中将默认值设置为当前日期,但它显示默认值,如2014-03-07 00:00:00,但我不想在此字段中显示时间,因为你可以看看我已经定义了格式"%Y-%m-%d",但是不知道为什么它会显示出来,如果有人有任何解决方案,请帮忙。

2 个答案:

答案 0 :(得分:0)

试试这个,

format(可选)是要使用的日期格式。这是PHP用来指定日期字符串格式的格式(见下文)。如果没有给出格式参数,则假设'%Y-%m-%d'(给出'2008-04-16'之类的日期)。

阅读more

如果上述情况不起作用,请尝试以下方法。

在您的XML

<field name="date" type="PubDateCalendar" label="Date (*)"
            class="inputbox required" size="22"
            format="%Y-%m-%d"  labelclass="control-label" readonly="true"  
        />

场/ pubdatecalendar.php

<?php
defined('_JEXEC') or die;
jimport('joomla.form.helper');
JFormHelper::loadFieldClass('calendar');

class JFormFieldPubDateCalendar extends JFormFieldCalendar
{
    public $type = 'PubDateCalendar';
    protected function getInput()
    {

        $this->value = date('Y-m-d');

        return parent::getInput();
    }
}
?>

希望它的作品......

答案 1 :(得分:0)

试试这个......这段代码和@Jobin Jose解决方案之间的区别在于你打电话给父母。查看JFormFieldCalendar类,显示具有自己格式的ovveride

<?php

defined('_JEXEC') or die;
jimport('joomla.form.helper');
JFormHelper::loadFieldClass('calendar');

class JFormFieldCustomCalendar extends JFormFieldCalendar
{

    public $type = 'CustomCalendar';

    protected $defaultFormat = 'd-m-Y';

    /*
     * Un jour d'intervalle entre le debut et la fin
     */
    protected $interval = 'P1D';

    protected function getInput()
    {
        parent::getInput();

        // Build the attributes array.
        $attributes = array();

        empty($this->size)      ? null : $attributes['size'] = $this->size;
        empty($this->maxlength) ? null : $attributes['maxlength'] = $this->maxlength;
        empty($this->class)     ? null : $attributes['class'] = $this->class;
        !$this->readonly        ? null : $attributes['readonly'] = '';
        !$this->disabled        ? null : $attributes['disabled'] = '';
        empty($this->onchange)  ? null : $attributes['onchange'] = $this->onchange;
        empty($hint)            ? null : $attributes['placeholder'] = $hint;
        $this->autocomplete     ? null : $attributes['autocomplete'] = 'off';
        !$this->autofocus       ? null : $attributes['autofocus'] = '';

        if ($this->required) {
            $attributes['required'] = '';
            $attributes['aria-required'] = 'true';
        }

        $date = new DateTime("now");

        $format = $this->element['format'] ? (string) $this->element['format'] : $this->defaultFormat;
        $validFormat = preg_replace('/%/', '', $format);

        if ($this->element['default'] == 'start') {
            $this->value = $date->format($validFormat);
        } else if ($this->element['default'] == 'end') {
            $date->add(new DateInterval($this->interval));

            $this->value = $date->format($validFormat);
        }

        return JHtml::_('calendar', $this->value, $this->name, $this->id, $format, $attributes);
    }

}