PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB` REDROOM
PHP 5.6.40
Preview: dataTables.bootstrap.js Size: 4.16 KB
/home/ankaservis/azad.ankaservis.com/muhasebe/js/dataTables.bootstrap.js

/*! DataTables Bootstrap integration
 * ©2011-2014 SpryMedia Ltd - datatables.net/license
 */

/**
 * DataTables integration for Bootstrap 3. This requires Bootstrap 3 and
 * DataTables 1.10 or newer.
 *
 * This file sets the defaults and adds options to DataTables to style its
 * controls using Bootstrap. See http://datatables.net/manual/styling/bootstrap
 * for further information.
 */
(function(window, document, undefined){

var factory = function( $, DataTable ) {
"use strict";


/* Set the defaults for DataTables initialisation */
$.extend( true, DataTable.defaults, {
	dom:
		"<'row'<'col-xs-6'l><'col-xs-6'f>r>"+
		"t"+
		"<'row'<'col-xs-6'i><'col-xs-6'p>>",
	renderer: 'bootstrap'
} );


/* Default class modification */
$.extend( DataTable.ext.classes, {
	sWrapper:      "dataTables_wrapper form-inline dt-bootstrap",
	sFilterInput:  "form-control input-sm",
	sLengthSelect: "form-control input-sm"
} );


/* Bootstrap paging button renderer */
DataTable.ext.renderer.pageButton.bootstrap = function ( settings, host, idx, buttons, page, pages ) {
	var api     = new DataTable.Api( settings );
	var classes = settings.oClasses;
	var lang    = settings.oLanguage.oPaginate;
	var btnDisplay, btnClass;

	var attach = function( container, buttons ) {
		var i, ien, node, button;
		var clickHandler = function ( e ) {
			e.preventDefault();
			if ( e.data.action !== 'ellipsis' ) {
				api.page( e.data.action ).draw( false );
			}
		};

		for ( i=0, ien=buttons.length ; i<ien ; i++ ) {
			button = buttons[i];

			if ( $.isArray( button ) ) {
				attach( container, button );
			}
			else {
				btnDisplay = '';
				btnClass = '';

				switch ( button ) {
					case 'ellipsis':
						btnDisplay = '&hellip;';
						btnClass = 'disabled';
						break;

					case 'first':
						btnDisplay = lang.sFirst;
						btnClass = button + (page > 0 ?
							'' : ' disabled');
						break;

					case 'previous':
						btnDisplay = lang.sPrevious;
						btnClass = button + (page > 0 ?
							'' : ' disabled');
						break;

					case 'next':
						btnDisplay = lang.sNext;
						btnClass = button + (page < pages-1 ?
							'' : ' disabled');
						break;

					case 'last':
						btnDisplay = lang.sLast;
						btnClass = button + (page < pages-1 ?
							'' : ' disabled');
						break;

					default:
						btnDisplay = button + 1;
						btnClass = page === button ?
							'active' : '';
						break;
				}

				if ( btnDisplay ) {
					node = $('<li>', {
							'class': classes.sPageButton+' '+btnClass,
							'aria-controls': settings.sTableId,
							'tabindex': settings.iTabIndex,
							'id': idx === 0 && typeof button === 'string' ?
								settings.sTableId +'_'+ button :
								null
						} )
						.append( $('<a>', {
								'href': '#'
							} )
							.html( btnDisplay )
						)
						.appendTo( container );

					settings.oApi._fnBindAction(
						node, {action: button}, clickHandler
					);
				}
			}
		}
	};

	attach(
		$(host).empty().html('<ul class="pagination"/>').children('ul'),
		buttons
	);
};


/*
 * TableTools Bootstrap compatibility
 * Required TableTools 2.1+
 */
if ( DataTable.TableTools ) {
	// Set the classes that TableTools uses to something suitable for Bootstrap
	$.extend( true, DataTable.TableTools.classes, {
		"container": "DTTT btn-group",
		"buttons": {
			"normal": "btn btn-default",
			"disabled": "disabled"
		},
		"collection": {
			"container": "DTTT_dropdown dropdown-menu",
			"buttons": {
				"normal": "",
				"disabled": "disabled"
			}
		},
		"print": {
			"info": "DTTT_print_info modal"
		},
		"select": {
			"row": "active"
		}
	} );

	// Have the collection use a bootstrap compatible drop down
	$.extend( true, DataTable.TableTools.DEFAULTS.oTags, {
		"collection": {
			"container": "ul",
			"button": "li",
			"liner": "a"
		}
	} );
}

}; // /factory


// Define as an AMD module if possible
if ( typeof define === 'function' && define.amd ) {
	define( ['jquery', 'datatables'], factory );
}
else if ( typeof exports === 'object' ) {
    // Node/CommonJS
    factory( require('jquery'), require('datatables') );
}
else if ( jQuery ) {
	// Otherwise simply initialise as normal, stopping multiple evaluation
	factory( jQuery, jQuery.fn.dataTable );
}


})(window, document);

Directory Contents

Dirs: 3 × Files: 46

Name Size Perms Modified Actions
ckeditor DIR
- drwxr-xr-x 2025-01-09 06:49:24
Edit Download
- drwxr-xr-x 2025-01-09 06:49:24
Edit Download
flot DIR
- drwxr-xr-x 2025-01-09 06:49:24
Edit Download
14.13 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
4.95 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
19.91 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
31.07 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
14.14 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
16.32 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.93 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
8.38 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
4.16 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
20.59 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
27.72 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
55.31 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
51.76 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
12.23 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
262.09 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
93.54 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
32.54 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
109.44 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
140.93 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
93.54 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
7.03 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
222.86 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
425.63 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
1.90 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
711 B lrw-r--r-- 2017-05-21 19:35:02
Edit Download
2.00 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
75.76 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
4.21 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.48 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
3.31 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
21.02 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
42.23 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
6.24 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
882 B lrw-r--r-- 2017-05-21 19:35:02
Edit Download
74.25 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
1.26 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
20.59 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
14.80 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
28.04 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
31.40 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
12.00 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
88.52 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
2.11 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
64.43 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
2.67 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download
109.89 KB lrw-r--r-- 2017-05-21 19:35:02
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).
© 2026 REDROOM — Secure File Manager. All rights reserved. Built with ❤️ & Red Dark UI