Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace Kanboard\Model; use Kanboard\Core\Base; /** * Class Timezone * * @pa..

Decoded Output download

<?php

namespace Kanboard\Model;

use Kanboard\Core\Base;

/**
 * Class Timezone
 *
 * @package Kanboard\Model
 * @author  Frederic Guillot
 */
class TimezoneModel extends Base
{
    /**
     * Get available timezones
     *
     * @access public
     * @param  boolean   $prepend  Prepend a default value
     * @return array
     */
    public function getTimezones($prepend = false)
    {
        $timezones = timezone_identifiers_list();
        $listing = array_combine(array_values($timezones), $timezones);

        if ($prepend) {
            return array('' => t('Application default')) + $listing;
        }

        return $listing;
    }

    /**
     * Get current timezone
     *
     * @access public
     * @return string
     */
    public function getCurrentTimezone()
    {
        return $this->userSession->getTimezone() ?: $this->configModel->get('application_timezone', 'UTC');
    }

    /**
     * Set timezone
     *
     * @access public
     */
    public function setCurrentTimezone()
    {
        date_default_timezone_set($this->getCurrentTimezone());
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Kanboard\Model;

use Kanboard\Core\Base;

/**
 * Class Timezone
 *
 * @package Kanboard\Model
 * @author  Frederic Guillot
 */
class TimezoneModel extends Base
{
    /**
     * Get available timezones
     *
     * @access public
     * @param  boolean   $prepend  Prepend a default value
     * @return array
     */
    public function getTimezones($prepend = false)
    {
        $timezones = timezone_identifiers_list();
        $listing = array_combine(array_values($timezones), $timezones);

        if ($prepend) {
            return array('' => t('Application default')) + $listing;
        }

        return $listing;
    }

    /**
     * Get current timezone
     *
     * @access public
     * @return string
     */
    public function getCurrentTimezone()
    {
        return $this->userSession->getTimezone() ?: $this->configModel->get('application_timezone', 'UTC');
    }

    /**
     * Set timezone
     *
     * @access public
     */
    public function setCurrentTimezone()
    {
        date_default_timezone_set($this->getCurrentTimezone());
    }
}

Function Calls

None

Variables

None

Stats

MD5 2b32dccc09981dcedeb0396fca999c25
Eval Count 0
Decode Time 99 ms