restore composer.json, add mysqli extension

This commit is contained in:
2026-04-15 17:02:52 +05:00
commit 77cf56a348
4317 changed files with 1397107 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
/*=========================================================================================
File Name: user-datatable.js
Description: User Datatable
----------------------------------------------------------------------------------------
Item Name: Vuesax HTML Admin Template
Version: 1.1
Author: PIXINVENT
Author URL: http://www.themeforest.net/user/pixinvent
==========================================================================================*/
$(document).ready(function() {
/************************************************
* js of select checkbox and Length *
************************************************/
$('#check-slct').DataTable( {
columnDefs: [ {
orderable: false,
className: 'select-checkbox',
targets: 0
} ],
select: {
style: 'os',
selector: 'td:first-child'
},
order: [[ 1, 'asc' ]],
"lengthMenu": [[5, 25, 50, -1], [5, 25, 50, "All"]],
/**************************************
* js of Search Placeholder *
***************************************/
language: {
search: "_INPUT_",
"search": '<i class="fa fa-search"></i>',
"searchPlaceholder": "search",
}
} );
} );