/blocks/nav_links.php
http://github.com/MightyGorgon/icy_phoenix · PHP · 41 lines · 19 code · 8 blank · 14 comment · 9 complexity · 6010a56fb4058094783d8a787497a2ae MD5 · raw file
- <?php
- /**
- *
- * @package Icy Phoenix
- * @version $Id$
- * @copyright (c) 2008 Icy Phoenix
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- *
- */
- /**
- *
- * @Extra credits for this file
- * masterdavid - Ronald John David
- *
- */
- if (!defined('IN_ICYPHOENIX'))
- {
- die('Hacking attempt');
- }
- if(!function_exists('cms_block_nav_links'))
- {
- function cms_block_nav_links()
- {
- global $config, $template, $user, $lang, $cms_page, $cms_page_blocks;
- $switch_cms_show_hide = (empty($user->data['is_bot']) && ($config['cms_block_pos'] == 'hl')) ? true : false;
- if(!defined('HAS_DIED') && !defined('IN_LOGIN') && ($cms_page['global_blocks'] || $cms_page_blocks || $switch_cms_show_hide))
- {
- $template->assign_var('SWITCH_CMS_SHOW_HIDE', true);
- }
- }
- }
- cms_block_nav_links();
- ?>