����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 18.218.75.143 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/admin/assets/plugins/DataTables/media/src/api/ |
Upload File : |
/** * Provide a common method for plug-ins to check the version of DataTables being used, in order * to ensure compatibility. * @param {string} sVersion Version string to check for, in the format "X.Y.Z". Note that the * formats "X" and "X.Y" are also acceptable. * @returns {boolean} true if this version of DataTables is greater or equal to the required * version, or false if this version of DataTales is not suitable * @static * @dtopt API-Static * * @example * alert( $.fn.dataTable.fnVersionCheck( '1.9.0' ) ); */ DataTable.fnVersionCheck = function( sVersion ) { /* This is cheap, but effective */ var fnZPad = function (Zpad, count) { while(Zpad.length < count) { Zpad += '0'; } return Zpad; }; var aThis = DataTable.ext.sVersion.split('.'); var aThat = sVersion.split('.'); var sThis = '', sThat = ''; for ( var i=0, iLen=aThat.length ; i<iLen ; i++ ) { sThis += fnZPad( aThis[i], 3 ); sThat += fnZPad( aThat[i], 3 ); } return parseInt(sThis, 10) >= parseInt(sThat, 10); }; /** * Check if a TABLE node is a DataTable table already or not. * @param {node} nTable The TABLE node to check if it is a DataTable or not (note that other * node types can be passed in, but will always return false). * @returns {boolean} true the table given is a DataTable, or false otherwise * @static * @dtopt API-Static * * @example * var ex = document.getElementById('example'); * if ( ! $.fn.DataTable.fnIsDataTable( ex ) ) { * $(ex).dataTable(); * } */ DataTable.fnIsDataTable = function ( nTable ) { var o = DataTable.settings; for ( var i=0 ; i<o.length ; i++ ) { if ( o[i].nTable === nTable || o[i].nScrollHead === nTable || o[i].nScrollFoot === nTable ) { return true; } } return false; }; /** * Get all DataTable tables that have been initialised - optionally you can select to * get only currently visible tables. * @param {boolean} [bVisible=false] Flag to indicate if you want all (default) or * visible tables only. * @returns {array} Array of TABLE nodes (not DataTable instances) which are DataTables * @static * @dtopt API-Static * * @example * var table = $.fn.dataTable.fnTables(true); * if ( table.length > 0 ) { * $(table).dataTable().fnAdjustColumnSizing(); * } */ DataTable.fnTables = function ( bVisible ) { var out = []; jQuery.each( DataTable.settings, function (i, o) { if ( !bVisible || (bVisible === true && $(o.nTable).is(':visible')) ) { out.push( o.nTable ); } } ); return out; };