Skip to content

Instantly share code, notes, and snippets.

View low's full-sized avatar
🤖
Multi-tasking

Lodewijk Schutte low

🤖
Multi-tasking
View GitHub Profile
@low
low / EE2 Notice
Created May 22, 2010 11:58
Sets default EE notice and closes it after 2 seconds
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);'
));
}
// To serialize:
// Yeah, that's 3, 1, 3 and 11 backslashes.
preg_replace('/\\\("|\'|\\\)/', '\\\\\\\\\\\$1', serialize($array));
// To unserialize:
$REGX->array_stripslashes(unserialize($string));
@low
low / ee_clean-install.sql
Created April 16, 2009 08:14
Cleans up a new ExpressionEngine installation
# 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