Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64
User : palandch ( 1163)
PHP Version : 7.1.33
Disable Function : NONE
Directory :  /home/palandch/www/core/model/modx/processors/element/tv/renders/web/output/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/palandch/www/core/model/modx/processors/element/tv/renders/web/output/date.class.php
<?php
/**
 * @var modX $modx
 * @var array $params
 * @var string $value
 *
 * @package modx
 * @subpackage processors.element.tv.renders.mgr.output
 */
class modTemplateVarOutputRenderDate extends modTemplateVarOutputRender {
    public function process($value,array $params = array()) {
        /* default properties */
        $params['format'] = !empty($params['format']) ? $params['format'] : "%A %d, %B %Y";
        /* fix for 2.0.0-pl bug where 1=yes and 0=no */
        $params['default'] = !empty($params['default']) && in_array($params['default'],array('yes',1,'1')) ? 1 : 0;

        $value= $this->tv->parseInput($value);

        /* if not using current time and no value, return */
        if (empty($value) && empty($params['default'])) return '';

        /* if using current, and value empty, get current time */
        if (!empty($params['default']) && empty($value)) {
            $timestamp = time();
        } else { /* otherwise get timestamp */
            $timestamp= strtotime($value);
        }

        /* return formatted time */
        return strftime($params['format'],$timestamp);
    }
}
return 'modTemplateVarOutputRenderDate';

Spamworldpro Mini