!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.24.0. PHP/7.3.32 

uname -a: Linux ip-172-31-28-255.ec2.internal 6.1.159-181.297.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC
Mon Dec 22 22:31:59 UTC 2025 x86_64
 

 

Safe-mode: OFF (not secure)

/www/wwwroot/itce.co.in/itce.co.in/data/include/runnerJS/   drwxr-xr-x
Free 30.71 GB of 49.93 GB (61.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     RunnerResizeGrid.js (8.37 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
Runner.namespace('Runner.resize');Runner.resize.Grid=Runner.extend(Runner.emptyFn,{pageId:-1,gridSettings:null,columnObjs:null,isShowRows:false,isUseInlineAdd:false,oldLayout:false,layoutName:"",classBasePrefix:"",constructor:function(cfg){Runner.apply(this,cfg);this.pageObj=Runner.pages.PageManager.getAt(this.tName,this.pageId);this.isShowRows=Runner.pages.PageSettings.getTableData(this.tName,"showRows");this.isUseInlineAdd=Runner.pages.PageSettings.getTableData(this.tName,"isInlineAdd");},init:function(){if(!this.isUseInlineAdd&&!this.isShowRows){this.pageObj.fireEvent('afterPageReady',this.pageObj,this.pageObj.proxy,this.pageObj.id);return;}
this.classBasePrefix=this.oldLayout?'runner-':'rnr-';this.cellWrapperClass=this.classBasePrefix+'resize-cellwrapper';this.gridSettings={classes:{table:this.pageObj.gridElem[0].className,thead:{trs:[],ths:[]},tbody:{trs:[],bodyCells:[]}},styles:{table:this.pageObj.gridElem.attr('style')||'',thead:{trs:[],ths:[]},tbody:{trs:[]}},ieconts:{ths:[],tds:[]},rowids:[],recordIds:[]};this.parseGridHeader();this.parseGridBodyFoot();this.pageObj.initViewControls();this.pageObj.fireEvent('afterPageReady',this.pageObj,this.pageObj.proxy,this.pageObj.id);},hasColRowSpans:function(cell){return cell.colspan||cell.rowspan;},isNotMatch:function(){var table=$(this).closest('table');return!table.hasClass('runner-c-grid')&&!table.hasClass('rnr-c-grid');},parseGridHeader:function(){if(!this.pageObj.Y){return;}
var Y=this.pageObj.Y,self=this,initCookies=[],gridCookies=Y.Cookie.get(self.pageObj.shortTName),grSettings=this.gridSettings;this.columnObjs=[];$('thead tr.'+this.classBasePrefix+'toprow',this.pageObj.gridElem).each(function(i){var columnId=0;grSettings.classes.thead.trs[i]=this.className;grSettings.styles.thead.trs[i]=$(this).attr('style')||'';$('th',this).not(self.isNotMatch).each(function(){var $th=$(this);if(self.hasColRowSpans(this)){return;}
self.columnObjs[columnId]={key:'column'+columnId,label:$th.html()||' ',allowHTML:true,sortable:false};if(!gridCookies){initCookies[initCookies.length]=this.offsetWidth;}
grSettings.ieconts.ths[columnId]=$th.attr('ieditcont')||'';grSettings.classes.thead.ths[columnId]=this.className;grSettings.styles.thead.ths[columnId]=$th.attr('style')||'';columnId++;});});if(!gridCookies){Y.Cookie.set(this.pageObj.shortTName,Y.JSON.stringify(initCookies));}},parseGridBodyFoot:function(){var self=this,areaCodes=[],grSettings=this.gridSettings;$('tbody tr.'+this.classBasePrefix+'row, tbody tr.'+this.classBasePrefix+'bottomrow',this.pageObj.gridElem).each(function(i){var areaCode={},parseColumn=self.isShowRows&&(self.isUseInlineAdd&&i==1||!self.isUseInlineAdd&&i==0)||!self.isShowRows&&self.isUseInlineAdd&&i==0;grSettings.rowids[i]=this.id;grSettings.classes.tbody.bodyCells[i]=[];grSettings.classes.tbody.trs[i]=this.className;grSettings.styles.tbody.trs[i]={tr:$(this).attr('style')||'',tds:[]};$tds=$('td',this).not(self.isNotMatch).each(function(columnId){var $td=$(this);if(self.hasColRowSpans(this)){return;}
if($td.hasClass(self.classBasePrefix+'edge')||$td.hasClass(self.classBasePrefix+'cl')||$td.hasClass(self.classBasePrefix+'cr')||$td.parent().hasClass(self.classBasePrefix+'bottomrow')){areaCode[self.columnObjs[columnId].key]=$td.html();}else{areaCode[self.columnObjs[columnId].key]='<div class="'+self.cellWrapperClass+'">'+$td.html()+'</div>';}
if(parseColumn){grSettings.ieconts.tds[columnId]=$td.attr('ieditcont')||'';}
grSettings.styles.tbody.trs[i].tds[columnId]=$td.attr('style')||'';grSettings.classes.tbody.bodyCells[i].push(this.className);});grSettings.recordIds.push($tds.eq(0).data("record-id"));areaCodes.push(areaCode);});this.createResizeGrid(areaCodes);},createResizeGrid:function(data){if(!this.pageObj.Y){return;}
var Y=this.pageObj.Y,self=this,gridPar=self.pageObj.gridElem.parent(),table=new Y.DataTable.Base({columns:self.columnObjs,data:data}),$newGridElem;gridPar.children(":not(.rnr-cells-css)").remove();table.render(gridPar[0]);$newGridElem=self.setOldGridSettings().css({overflow:'hidden','table-layout':'fixed',width:this.totalGridWidth+'px'});Y.Resize.prototype.HANDLE_TEMPLATE='<div class="'+Y.ClassNameManager.getClassName('resize','handle')+' '
+Y.ClassNameManager.getClassName('resize','handle','{handle}')+'">'
+'<div class="'+Y.ClassNameManager.getClassName('resize','handle','inner')+' '+Y.ClassNameManager.getClassName('resize','handle','inner','{handle}')+'">'
+'&nbsp;'
+'</div>'
+'</div>';$('th',gridPar).not('.'+this.classBasePrefix+'cl, .'+this.classBasePrefix+'cr'+', .'+self.classBasePrefix+'edge').not(this.isNotMatch).each(function(){var $th=$(this),handle=Runner.isDirRTL()?'l':'r',resizeEventType=Y.UA.gecko?'resize:align':'resize:resize',cellWrapperStyle='width: '+$th.width()+'px; white-space: nowrap;',resize;$th.html('<div class="'+self.cellWrapperClass+'" style="'+cellWrapperStyle+'">'+$th.html()+'</div>');resize=new Y.Resize({node:this,handles:handle,defMinWidth:0});if(Y.UA.ie){resize.delegate.dd._move=function(ev){ev.pageX=window.event.screenX;return Y.DD.Drag.prototype._move.call(resize.delegate.dd,ev);}
resize.delegate.dd.on('drag:mouseDown',function(e){e.ev.pageX=window.event.screenX;});}
resize.on(resizeEventType,function(event){this._defResizeAlignFn(event);event.preventDefault();var nodeElem=this.get('node').getDOMNode(),gridCookies=Y.JSON.parse(Y.Cookie.get(self.pageObj.shortTName)),oldCellWidth=nodeElem.offsetWidth,newCellWidth=this.info.offsetWidth;cellIndex=nodeElem.cellIndex,gridWidth=self.pageObj.gridElem[0].offsetWidth,$nodeElem=$(nodeElem),nodeBorderAndPaddings=$nodeElem.outerWidth()-$nodeElem.width(),columnClass='yui3-datatable-col-'+$nodeElem.attr('data-yui3-col-id');$(self.pageObj.gridElem).css('width',gridWidth+(newCellWidth-oldCellWidth)+'px');$('.'+columnClass,gridPar).css('width',this.info.offsetWidth+'px');$('.'+columnClass+' div.'+self.cellWrapperClass,gridPar).css('width',this.info.offsetWidth+'px');$('div.'+self.cellWrapperClass,nodeElem).css('width',(this.info.offsetWidth-nodeBorderAndPaddings)+'px');});if(Runner.isDirRTL()){resize.on('drag:start',function(){Y.DD.DDM._pg.setStyles({left:'auto',right:'0'});});}
resize.on('resize:end',function(event){event.preventDefault();});if(Y.UA.gecko||Y.UA.ie){var node=$('<div style="position:relative"></div>');$th.children().appendTo(node);node.appendTo($th);}else{$th.css('position','relative');}});if(Runner.isDirRTL()){Y.DD.DDM._pg.setStyles({left:'auto',right:'0'});}},setOldGridSettings:function(){var self=this,$newGridElem=$('.'+this.classBasePrefix+'s-grid table.yui3-datatable-table',this.pageObj.pageCont),grSettings=this.gridSettings,gridCookies;$newGridElem.parent().addClass(this.classBasePrefix+'s-grid').addClass('not-container').addClass(this.layoutName);$newGridElem.parent().parent().addClass(this.classBasePrefix+'c-grid');$newGridElem.addClass(grSettings.classes.table);if(grSettings.styles.table){$newGridElem.attr('style',grSettings.styles.table);}
gridCookies=this.pageObj.Y.JSON.parse(this.pageObj.Y.Cookie.get(this.pageObj.shortTName));this.totalGridWidth=0;$('thead tr',$newGridElem).not(this.isNotMatch).each(function(i){var $tr=$(this);$tr.addClass(grSettings.classes.thead.trs[i]);if(grSettings.styles.thead.trs[i]){$tr.attr('style',grSettings.styles.thead.trs[i]);}
$('th',$tr).not(self.isNotMatch).each(function(j){var $th=$(this);$th.addClass(grSettings.classes.thead.ths[j]);if(grSettings.styles.thead.ths[j]){$th.attr('style',grSettings.styles.thead.ths[j]);}
if(!$th.hasClass(self.classBasePrefix+'edge')&&!$th.hasClass(self.classBasePrefix+'cl')&&!$th.hasClass(self.classBasePrefix+'cr')&&gridCookies[j]!==0){$th.css('width',gridCookies[j]+'px');}else{$th.css('width',$th.width()+'px');}
self.totalGridWidth+=$th.width();if(grSettings.ieconts[j]){$th.attr('ieditcont')=grSettings.ieconts.ths[j];}});});$('tbody.yui3-datatable-data tr',$newGridElem).not(this.isNotMatch).each(function(i){var $tr=$(this),isRowTFoot,recordId=grSettings.recordIds[i];$tr.addClass(grSettings.classes.tbody.trs[i]);isRowTFoot=$tr.hasClass('footer');this.id=grSettings.rowids[i];if(!isRowTFoot&&grSettings.styles.tbody.trs[i].tr){$tr.attr('style',grSettings.styles.tbody.trs[i].tr);}
$('td',this).not(self.isNotMatch).each(function(j){var $td=$(this);$td.addClass(grSettings.classes.tbody.bodyCells[i][j]);if(recordId!==undefined){$td.attr("data-record-id",recordId);}
if(!isRowTFoot){if(grSettings.styles.tbody.trs[i].tds[j]){$td.attr('style',grSettings.styles.tbody.trs[i].tds[j]);}
if(grSettings.ieconts[j]){$td.attr('ieditcont')=grSettings.ieconts.tds[j];}}});});return $newGridElem;}});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0021 ]--