diff options
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -1,8 +1,8 @@ <?php -function purity_theme_init() { - elgg_extend_view('page/elements/head', 'purity_theme/meta'); - elgg_extend_view('css/elgg', 'purity_theme/css'); +function habitorio_theme_init() { + elgg_extend_view('page/elements/head', 'habitorio_theme/meta'); + elgg_extend_view('css/elgg', 'habitorio_theme/css'); elgg_unregister_menu_item('topbar', 'elgg_logo'); if (elgg_is_active_plugin(CHAMELEONTHEMEENGINE)) { if (!function_exists('chameleonPresets')) { @@ -10,7 +10,7 @@ function purity_theme_init() { function chameleonPresets() { $presets = array( 'preset1' => array( - 'thumbnail' => 'purity_theme/graphics/preset1.png', + 'thumbnail' => 'habitorio_theme/graphics/preset1.png', 'body_background_color' => 'ECECEC', 'body_background_pattern' => 'eleven', 'accent_color' => '1d1d1d', @@ -19,7 +19,7 @@ function purity_theme_init() { 'logo_color' => 'f34557' ), 'preset2' => array( - 'thumbnail' => 'purity_theme/graphics/preset2.png', + 'thumbnail' => 'habitorio_theme/graphics/preset2.png', 'body_background_color' => 'a52a2a', 'body_background_pattern' => 'twelve', 'accent_color' => '216587', @@ -28,7 +28,7 @@ function purity_theme_init() { 'logo_color' => '000000' ), 'preset3' => array( - 'thumbnail' => 'purity_theme/graphics/preset3.png', + 'thumbnail' => 'habitorio_theme/graphics/preset3.png', 'body_background_color' => 'e8e8e8', 'body_background_pattern' => 'twentyone', 'accent_color' => '61871f', @@ -37,7 +37,7 @@ function purity_theme_init() { 'logo_color' => '61871f' ), 'preset4' => array( - 'thumbnail' => 'purity_theme/graphics/preset4.png', + 'thumbnail' => 'habitorio_theme/graphics/preset4.png', 'body_background_color' => '1e1436', 'body_background_pattern' => 'four', 'accent_color' => '000000', @@ -46,7 +46,7 @@ function purity_theme_init() { 'logo_color' => '1e1436' ), 'preset5' => array( - 'thumbnail' => 'purity_theme/graphics/preset5.png', + 'thumbnail' => 'habitorio_theme/graphics/preset5.png', 'body_background_color' => '163853', 'body_background_pattern' => 'twentyfive', 'accent_color' => '0F7516', @@ -55,7 +55,7 @@ function purity_theme_init() { 'logo_color' => 'ff0000' ), 'preset6' => array( - 'thumbnail' => 'purity_theme/graphics/preset6.png', + 'thumbnail' => 'habitorio_theme/graphics/preset6.png', 'body_background_color' => 'e6e3de', 'body_background_pattern' => 'fourteen', 'accent_color' => 'ea7a3e', @@ -64,7 +64,7 @@ function purity_theme_init() { 'logo_color' => '4c4a47' ), 'preset7' => array( - 'thumbnail' => 'purity_theme/graphics/preset7.png', + 'thumbnail' => 'habitorio_theme/graphics/preset7.png', 'body_background_color' => '000000', 'body_background_pattern' => 'fifteen', 'accent_color' => '1d1d1d', @@ -80,5 +80,5 @@ function purity_theme_init() { } } -elgg_register_event_handler('init', 'system', 'purity_theme_init'); -?>
\ No newline at end of file +elgg_register_event_handler('init', 'system', 'habitorio_theme_init'); +?> |