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,41 @@
/*=========================================================================================
File Name: components-modal.js
Description: Modals are streamlined, but flexible, dialog prompts with the minimum
required functionality and smart defaults.
----------------------------------------------------------------------------------------
Item Name: Vuesax HTML Admin Template
Version: 1.1
Author: Pixinvent
Author URL: hhttp://www.themeforest.net/user/pixinvent
==========================================================================================*/
(function(window, document, $) {
'use strict';
// onShow event
$('#onshowbtn').on('click', function() {
$('#onshow').on('show.bs.modal', function() {
alert('onShow event fired.');
});
});
// onShown event
$('#onshownbtn').on('click', function() {
$('#onshown').on('shown.bs.modal', function() {
alert('onShown event fired.');
});
});
// onHide event
$('#onhidebtn').on('click', function() {
$('#onhide').on('hide.bs.modal', function() {
alert('onHide event fired.');
});
});
// onHidden event
$('#onhiddenbtn').on('click', function() {
$('#onhidden').on('hidden.bs.modal', function() {
alert('onHidden event fired.');
});
});
})(window, document, jQuery);

View File

@@ -0,0 +1 @@
!function(n,o,e){"use strict";e("#onshowbtn").on("click",function(){e("#onshow").on("show.bs.modal",function(){alert("onShow event fired.")})}),e("#onshownbtn").on("click",function(){e("#onshown").on("shown.bs.modal",function(){alert("onShown event fired.")})}),e("#onhidebtn").on("click",function(){e("#onhide").on("hide.bs.modal",function(){alert("onHide event fired.")})}),e("#onhiddenbtn").on("click",function(){e("#onhidden").on("hidden.bs.modal",function(){alert("onHidden event fired.")})})}(window,document,jQuery);