Sindbad~EG File Manager

Current Path : /var/www/web3/encuestasupua_bak/assets/scripts/
Upload File :
Current File : /var/www/web3/encuestasupua_bak/assets/scripts/date.js

/**
 * Function to launch timepicker in question id
 */
function doPopupDate(qId) {

    /* need to update picker min/max value according to live value */
    $("#question"+qId).find('.date-timepicker-group').on('dp.show', function(){
        var minDate=$("#datemin"+$(this).data("basename")).text().trim();
        var maxDate=$("#datemax"+$(this).data("basename")).text().trim();
        var format=$(this).data("DateTimePicker").format();
        /* unsure of this part : don't need format ? */
        minDate = moment(minDate.substr(0,10), "YYYY-MM-DD");
        maxDate = moment(maxDate.substr(0,10), "YYYY-MM-DD");
        $(this).data("DateTimePicker").minDate(minDate);
        $(this).data("DateTimePicker").maxDate(maxDate);
    });
    /* need to launch EM each time is updated */
    $("#question"+qId).find('.date-timepicker-group').on('dp.change', function(){
        // $(this).find(":text").triggerHandler("change");/* Why this don't work ? */
        checkconditions($(this).find(":text").val(), $(this).find(":text").attr('name'), 'text', 'keyup')
    });
}

/**
 * Function to launch timepicker in question id
 * Using dropdown system
 */
function doDropDownDate(qId){
    $(document).on("change",'#question'+qId+' select',dateUpdater);
    $(document).on('ready pjax:scriptcomplete',function(){
        $("#question"+qId+" select").filter(':first').trigger("change");
        //dateUpdater();
    });
}

/**
 * dropdown date part is deprecated ?
 */
function dateUpdater() {
    var thisid = "", iFormatDate = "", iYear,iMonth,iDay,iHour,iMinute,parseddate,format;
    if(this.id.substr(0,3)=='yea')
    {
        thisid=this.id.substr(4);
    }
    else if(this.id.substr(0,3)=='mon')
    {
        thisid=this.id.substr(5);
    }
    else if(this.id.substr(0,3)=='day')
    {
        thisid=this.id.substr(3);
    }
    else if(this.id.substr(0,3)=='hou')
    {
        thisid=this.id.substr(4);
    }
    else if(this.id.substr(0,3)=='min')
    {
        thisid=this.id.substr(6);
    }
    if ((!$('#year'+thisid).length || $('#year'+thisid).val()=='') &&
        (!$('#month'+thisid).length || $('#month'+thisid).val()=='') &&
        (!$('#day'+thisid).length || $('#day'+thisid).val()=='') &&
        (!$('#hour'+thisid).length || $('#hour'+thisid).val()=='') &&
        (!$('#minute'+thisid).length || $('#minute'+thisid).val()==''))
    {
        //nothing filled in
        $('#answer'+thisid).val('');
        $('#answer'+thisid).change();
    }
    else if (($('#year'+thisid).length && $('#year'+thisid).val()=='') ||
        ($('#month'+thisid).length && $('#month'+thisid).val()=='') ||
        ($('#day'+thisid).length && $('#day'+thisid).val()=='') ||
        ($('#hour'+thisid).length && $('#hour'+thisid).val()=='') ||
        ($('#minute'+thisid).length && $('#minute'+thisid).val()==''))
        {
            //incomplete
            $('#answer'+thisid).val('INVALID');
            $('#answer'+thisid).change();
            // QCODE.NAOK return "" if real value is INVALID (because can be shown to user), then do it manually (line 721 em_javascript)
        }
        else
        {
            if (!$('#year'+thisid).val())
            {
                iYear='1900';
            }
            else
            {
                iYear=$('#year'+thisid).val();
            }
            if (!$('#month'+thisid).val())
            {
                iMonth='01';
            }
            else
            {
                iMonth=$('#month'+thisid).val();
            }
            if (!$('#day'+thisid).val())
            {
                iDay='01';
            }
            else
            {
                iDay=$('#day'+thisid).val();
            }
            if (!$('#hour'+thisid).val())
            {
                iHour='00';
            }
            else
            {
                iHour=$('#hour'+thisid).val();
            }
            if (!$('#minute'+thisid).val())
            {
                iMinute='00';
            }
            else
            {
                iMinute=$('#minute'+thisid).val();
            }

            parseddate= new moment(iDay+'-'+iMonth+'-'+iYear+' '+iHour+':'+iMinute, 'DD-MM-YYYY HH:mm');
            format = $('#dateformat'+thisid).val();

            iFormatDate = moment(parseddate).format(format);

            $('#answer'+thisid).val(iFormatDate);
            $('#answer'+thisid).change();
        }
        return true;
}

function pad (str, max) {
    return str.length < max ? pad("0" + str, max) : str;
}

function ValidDate(oObject, value) {// Regular expression used to check if date is in correct format
    if(typeof showpopup=="undefined"){showpopup=1;}
    var str_regexp = /[1-9][0-9]{3}-(0[1-9]|1[0-2])-([0-2][0-9]|3[0-1])/;
    var pattern = new RegExp(str_regexp);
    if ((value.match(pattern)!=null))
    {
        var date_array = value.split('-');
        var day = date_array[2];
        var month = date_array[1];
        var year = date_array[0];
        str_regexp = /1|3|5|7|8|10|12/;
        pattern = new RegExp(str_regexp);
        if ( day <= 31 && (month.match(pattern)!=null))
        {
            return true;
        }
        str_regexp = /4|6|9|11/;
        pattern = new RegExp(str_regexp);
        if ( day <= 30 && (month.match(pattern)!=null))
        {
            return true;
        }
        if (day == 29 && month == 2 && (year % 4 == 0))
        {
            return true;
        }
        if (day <= 28 && month == 2)
        {
            return true;
        }
    }
    if(showpopup)
    {
        window.alert(translt.alertInvalidDate);
    }// TODO : use EM and move it to EM
    oObject.focus();
    return false;
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists