⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Core
/
Ui
/
Edit File: JsCalendar.php
<?php /** * The Horde_Core_Ui_JsCalendar:: class generates the necessary javascript * code to allow the javascript calendar widget to be displayed on the page. * * Copyright 2009-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file COPYING for license information (LGPL). If you * did not receive this file, see http://www.horde.org/licenses/lgpl21. * * @author Michael Slusarz <slusarz@horde.org> * @category Horde * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 * @package Core */ class Horde_Core_Ui_JsCalendar { /** * Make sure init() is only run once. * * @var boolean */ protected static $_initRun = false; /** * Output the necessary javascript code to allow display of the calendar * widget. * * @param array $params Configuration parameters for the widget: * <pre> * 'click_month' - (boolean) If true, the month is clickable. * DEFAULT: false * 'click_week' - (boolean) If true, will display a clickable week. * DEFAULT: false * 'click_year' - (boolean) If true, the year is clickable. * DEFAULT: false * 'full_weekdays' - (boolean) Add full weekday localized list to * javascript object. * DEFAULT: false * 'short_weekdays' - (boolean) Display only the first letter of * weekdays? * DEFAULT: false * </pre> */ public static function init(array $params = array()) { if (self::$_initRun) { return; } self::$_initRun = true; $params = array_merge(array( 'click_month' => false, 'click_week' => false, 'click_year' => false, 'full_weekdays' => false, 'short_weekdays' => false ), $params); $weekdays = self::weekdays(); if ($params['short_weekdays']) { foreach ($weekdays as &$day) { $day = Horde_String::substr($day, 0, 1); } } $js = array( '-Horde_Calendar.click_month' => intval($params['click_month']), '-Horde_Calendar.click_week' => intval($params['click_week']), '-Horde_Calendar.click_year' => intval($params['click_year']), '-Horde_Calendar.firstDayOfWeek' => intval($GLOBALS['prefs']->getValue('first_week_day')), 'Horde_Calendar.months' => self::months(), 'Horde_Calendar.weekdays' => $weekdays ); if ($params['full_weekdays']) { $js['Horde_Calendar.fullweekdays'] = self::fullWeekdays(); } $page_output = $GLOBALS['injector']->getInstance('Horde_PageOutput'); $page_output->addScriptFile('calendar.js', 'horde'); $page_output->addInlineJsVars($js); } /** * Return the list of localized abbreviated weekdays. * * @return array Abbreviated weekdays. */ public static function weekdays() { return array( Horde_Core_Translation::t("Su"), Horde_Core_Translation::t("Mo"), Horde_Core_Translation::t("Tu"), Horde_Core_Translation::t("We"), Horde_Core_Translation::t("Th"), Horde_Core_Translation::t("Fr"), Horde_Core_Translation::t("Sa") ); } /** * Return the list of localized full weekday names. * * @return array Full weekday names. */ public static function fullWeekdays() { return array( Horde_Core_Translation::t("Sunday"), Horde_Core_Translation::t("Monday"), Horde_Core_Translation::t("Tuesday"), Horde_Core_Translation::t("Wednesday"), Horde_Core_Translation::t("Thursday"), Horde_Core_Translation::t("Friday"), Horde_Core_Translation::t("Saturday"), ); } /** * Return the localized list of months. * * @return array Month list. */ public static function months() { return array( Horde_Core_Translation::t("January"), Horde_Core_Translation::t("February"), Horde_Core_Translation::t("March"), Horde_Core_Translation::t("April"), Horde_Core_Translation::t("May"), Horde_Core_Translation::t("June"), Horde_Core_Translation::t("July"), Horde_Core_Translation::t("August"), Horde_Core_Translation::t("September"), Horde_Core_Translation::t("October"), Horde_Core_Translation::t("November"), Horde_Core_Translation::t("December") ); } }
Simpan