'."\n"; // meta keywords $keywords = get_page_meta_keywords(FALSE); if ($keywords != '') echo ''."\n"; if ($full) { echo ''."\n"; } // script queue get_scripts_frontend(); exec_action('theme-header'); } /** * Get Page Footer HTML * * This will return footer html for a particular page. Right now * this function only executes a plugin hook so developers can hook into * the bottom of a site's template. * * @since 2.0 * @uses exec_action * * @return string HTML for template header */ function get_footer() { get_scripts_frontend(TRUE); exec_action('theme-footer'); } /** * Get Site URL * * This will return the site's full base URL * This is the value set in the control panel * * @since 1.0 * @uses $SITEURL * * @param bool $echo Optional, default is true. False will 'return' value * @return string Echos or returns based on param $echo */ function get_site_url($echo=true) { global $SITEURL; if ($echo) { echo $SITEURL; } else { return $SITEURL; } } /** * Get Theme URL * * This will return the current active theme's full URL * * @since 1.0 * @uses $SITEURL * @uses $TEMPLATE * * @param bool $echo Optional, default is true. False will 'return' value * @return string Echos or returns based on param $echo */ function get_theme_url($echo=true) { global $SITEURL; global $TEMPLATE; $myVar = trim($SITEURL . "theme/" . $TEMPLATE); if ($echo) { echo $myVar; } else { return $myVar; } } /** * Get Site's Name * * This will return the value set in the control panel * * @since 1.0 * @uses $SITENAME * * @param bool $echo Optional, default is true. False will 'return' value * @return string Echos or returns based on param $echo */ function get_site_name($echo=true) { global $SITENAME; $myVar = cl($SITENAME); if ($echo) { echo $myVar; } else { return $myVar; } } /** * Get Administrator's Email Address * * This will return the value set in the control panel * * @depreciated as of 3.0 * * @since 1.0 * @uses $EMAIL * * @param bool $echo Optional, default is true. False will 'return' value * @return string Echos or returns based on param $echo */ function get_site_email($echo=true) { global $EMAIL; $myVar = trim(stripslashes($EMAIL)); if ($echo) { echo $myVar; } else { return $myVar; } } /** * Get Site Credits * * This will return HTML that displays 'Powered by GetSimple X.XX' * It will always be nice if developers left this in their templates * to help promote GetSimple. * * @since 1.0 * @uses $site_link_back_url from configuration.php * @uses $site_full_name from configuration.php * @uses GSVERSION * @uses GSADMININCPATH * * @param string $text Optional, default is 'Powered by' * @return string */ function get_site_credits($text ='Powered by ') { include(GSADMININCPATH.'configuration.php'); $site_credit_link = ''.$text.' '.$site_full_name.''; echo stripslashes($site_credit_link); } /** * Menu Data * * This will return data to be used in custom navigation functions * * @since 2.0 * @uses GSDATAPAGESPATH * @uses find_url * @uses getXML * @uses subval_sort * * @param bool $xml Optional, default is false. * True will return value in XML format. False will return an array * @return array|string Type 'string' in this case will be XML */ function menu_data($id = null,$xml=false) { $menu_extract = ''; global $pagesArray; $pagesSorted = subval_sort($pagesArray,'menuOrder'); if (count($pagesSorted) != 0) { $count = 0; if (!$xml){ foreach ($pagesSorted as $page) { $text = (string)$page['menu']; $pri = (string)$page['menuOrder']; $parent = (string)$page['parent']; $title = (string)$page['title']; $slug = (string)$page['url']; $menuStatus = (string)$page['menuStatus']; $private = (string)$page['private']; $pubDate = (string)$page['pubDate']; $url = find_url($slug,$parent); $specific = array("slug"=>$slug,"url"=>$url,"parent_slug"=>$parent,"title"=>$title,"menu_priority"=>$pri,"menu_text"=>$text,"menu_status"=>$menuStatus,"private"=>$private,"pub_date"=>$pubDate); if ($id == $slug) { return $specific; exit; } else { $menu_extract[] = $specific; } } return $menu_extract; } else { $xml = ''; foreach ($pagesSorted as $page) { $text = $page['menu']; $pri = $page['menuOrder']; $parent = $page['parent']; $title = $page['title']; $slug = $page['url']; $pubDate = $page['pubDate']; $menuStatus = $page['menuStatus']; $private = $page['private']; $url = find_url($slug,$parent); $xml.=""; $xml.=""; $xml.=""; $xml.=""; $xml.=""; $xml.="<![CDATA[".$title."]]>"; $xml.=""; $xml.=""; $xml.=""; $xml.=""; $xml.=""; } $xml.=""; return $xml; } } } /** * Get Component * * This will return the component requested. * Components are parsed for PHP within them. * * @since 1.0 * @uses GSDATAOTHERPATH * @uses getXML * @modified mvlcek 6/12/2011 * * @param string $id This is the ID of the component you want to display * True will return value in XML format. False will return an array * @return string */ function get_component($id) { global $components; if (!$components) { if (file_exists(GSDATAOTHERPATH.'components.xml')) { $data = getXML(GSDATAOTHERPATH.'components.xml'); $components = $data->item; } else { $components = array(); } } if (count($components) > 0) { foreach ($components as $component) { if ($id == $component->slug) { eval("?>" . strip_decode($component->value) . "'.strip_decode($page['menu']).''."\n"; } } } echo exec_filter('menuitems',$menu); } /** * Check if a user is logged in * * This will return true if user is logged in * * @since 3.2 * @uses get_cookie(); * @uses $USR * * @return bool */ function is_logged_in(){ global $USR; if (isset($USR) && $USR == get_cookie('GS_ADMIN_USERNAME')) { return true; } } /** * @depreciated as of 2.04 */ function return_page_title() { return get_page_title(FALSE); } /** * @depreciated as of 2.04 */ function return_parent() { return get_parent(FALSE); } /** * @depreciated as of 2.04 */ function return_page_slug() { return get_page_slug(FALSE); } /** * @depreciated as of 2.04 */ function return_site_ver() { return get_site_version(FALSE); } /** * @depreciated as of 2.03 */ if(!function_exists('set_contact_page')) { function set_contact_page() { #removed functionality } } ?>