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
function _ee_notice($msg) | |
{ | |
$this->EE->javascript->output(array( | |
'$.ee_notice("'.$this->EE->lang->line($msg).'",{type:"success",open:true});', | |
'window.setTimeout(function(){$.ee_notice.destroy()}, 2000);' | |
)); | |
} |
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
// To serialize: | |
// Yeah, that's 3, 1, 3 and 11 backslashes. | |
preg_replace('/\\\("|\'|\\\)/', '\\\\\\\\\\\$1', serialize($array)); | |
// To unserialize: | |
$REGX->array_stripslashes(unserialize($string)); |
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
# get rid of template groups | |
TRUNCATE TABLE exp_template_groups; | |
INSERT INTO exp_template_groups | |
(group_name, group_order, is_site_default) | |
VALUES | |
('home', '1', 'y'); | |
# get rid of templates | |
TRUNCATE TABLE exp_templates; | |
INSERT INTO exp_templates |
NewerOlder