This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
// https://gist.github.com/adamasantares/e554d3bd8e00268911c98f1f1d293899 | |
// change main script name to required and put it to web root of project | |
define('MAIN_SCRIPT', 'index.php'); | |
$_GET = [ | |
//'param' => 'value', | |
]; | |
$_POST = [ | |
//'param' => 'value', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* jQuery Bootstrap modals (Alert and Question). | |
* | |
* jModal.Alert("Hello user", "Welcome!"); | |
* jModal.Question("I'll install some stupid app. Are you agree?", "Ask", ["yes-green","no-red"], function(button, data) { | |
* if (button == "no") { | |
* jModal.Alert("I don't care about your answer " + data.ha + "!", "Warning"); | |
* } | |
* }, {"ha":"HAHAHA"}); | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/.gitignore | |
/.htaccess | |
/administrator/cache/* | |
/administrator/components/com_admin/* | |
/administrator/components/com_ajax/* | |
/administrator/components/com_tags/* | |
/administrator/components/com_banners/* | |
/administrator/components/com_cache/* | |
/administrator/components/com_postinstall/* | |
/administrator/components/com_joomlaupdate/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* __DIR__ & __FILE__ for JavaScript (was tested in IE 7-10) | |
* This definition must be inserted at root of script file, outside of any function. | |
*/ | |
(function(w,d){ | |
var u=null; | |
w.__FILE__=(function(){ | |
try{u();}catch(err){ | |
if(err.stack){ |