This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/themes/zuitedesk/templates/page.tpl.php

272 lines
10 KiB
PHP

<?php
/**
* @file
* Theme implementation to display a single Drupal page.
*
* Available variables:
*
* General utility variables:
* - $base_path: The base URL path of the Drupal installation. At the very
* least, this will always default to /.
* - $css: An array of CSS files for the current page.
* - $directory: The directory the template is located in, e.g. modules/system
* or themes/garland.
* - $is_front: TRUE if the current page is the front page. Used to toggle the mission statement.
* - $logged_in: TRUE if the user is registered and signed in.
* - $is_admin: TRUE if the user has permission to access administration pages.
*
* Page metadata:
* - $language: (object) The language the site is being displayed in.
* $language->language contains its textual representation.
* $language->dir contains the language direction. It will either be 'ltr' or 'rtl'.
* - $head_title: A modified version of the page title, for use in the TITLE tag.
* - $head: Markup for the HEAD section (including meta tags, keyword tags, and
* so on).
* - $styles: Style tags necessary to import all CSS files for the page.
* - $scripts: Script tags necessary to load the JavaScript files and settings
* for the page.
* - $classes: String of classes that can be used to style contextually through
* CSS. It should be placed within the <body> tag. When selecting through CSS
* it's recommended that you use the body tag, e.g., "body.front". It can be
* manipulated through the variable $classes_array from preprocess functions.
* The default values can be one or more of the following:
* - front: Page is the home page.
* - not-front: Page is not the home page.
* - logged-in: The current viewer is logged in.
* - not-logged-in: The current viewer is not logged in.
* - node-type-[node type]: When viewing a single node, the type of that node.
* For example, if the node is a "Blog entry" it would result in "node-type-blog".
* Note that the machine name will often be in a short form of the human readable label.
* - page-views: Page content is generated from Views. Note: a Views block
* will not cause this class to appear.
* - page-panels: Page content is generated from Panels. Note: a Panels block
* will not cause this class to appear.
* The following only apply with 'sidebar_second' block regions:
* - no-sidebars: When no sidebar content exists.
* - one-sidebar, sidebar-second: A combination of the
* two classes when only one of the two sidebars have content.
* - $node: Full node object. Contains data that may not be safe. This is only
* available if the current page is on the node's primary url.
* - $menu_item: (array) A page's menu item. This is only available if the
* current page is in the menu.
*
* Site identity:
* - $front_page: The URL of the front page. Use this instead of $base_path,
* when linking to the front page. This includes the language domain or prefix.
* - $logo: The path to the logo image, as defined in theme configuration.
*
* Navigation:
* - $search_box: HTML to display the search box, empty if search has been disabled.
* - $primary_links (array): An array containing the Primary menu links for the
* site, if they have been configured.
* - $secondary_links (array): An array containing the Secondary menu links for
* the site, if they have been configured.
* - $breadcrumb: The breadcrumb trail for the current page.
*
* Page content (in order of occurrence in the default page.tpl.php):
* - $title: The page title, for use in the actual HTML content.
* - $messages: HTML for status and error messages. Should be displayed prominently.
* - $tabs: Tabs linking to any sub-pages beneath the current page (e.g., the
* view and edit tabs when displaying a node).
* - $help: Dynamic help text, mostly for admin pages.
* - $content: The main content of the current page.
* - $feed_icons: A string of all feed icons for the current page.
*
* Footer/closing data:
* - $footer_message: The footer message as defined in the admin settings.
* - $closure: Final closing markup from any modules that have altered the page.
* This variable should always be output last, after all other dynamic content.
*
* Helper variables:
* - $classes_array: Array of html class attribute values. It is flattened
* into a string within the variable $classes.
*
* Regions:
* - $content_top: Items to appear above the main content of the current page.
* - $content_bottom: Items to appear below the main content of the current page.
* - $navigation: Items for the navigation bar.
* - $sidebar_second: Items for the second sidebar.
* - $header: Items for the header region.
* - $footer: Items for the footer region.
* - $page_closure: Items to appear below the footer.
*
* The following variables are deprecated and will be removed in Drupal 7:
* - $body_classes: This variable has been renamed $classes in Drupal 7.
*
* @see template_preprocess()
* @see template_preprocess_page()
* @see zen_preprocess()
* @see zen_process()
*/
?>
<!DOCTYPE html>
<html <?php print $html_attributes; ?>>
<head>
<?php print $head; ?>
<title><?php print $head_title ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<?php
global $base_url;
print '<meta property="og:url" content="'. url(isset($_GET['q']) ? $_GET['q'] : '<front>', array('absolute' => TRUE)) ."\" />\n";
print '<meta property="og:title" content="'. ($title ? $title : $head_title) ."\" />\n";
$view_image = $node->field_imagen_adjunta[0]['view'];
if ($node && !empty($view_image)) {
$ini = strpos($view_image, '"') + 1;
$end = strpos($view_image, '"', $ini);
$og_image = substr($view_image, $ini, $end - $ini);
} else {
$og_image = $base_url . '/' . $directory . '/images/manuel.cillero.es.jpg';
}
print '<meta property="og:image" content="'. $og_image ."\" />\n";
if ($site_name) print '<meta property="og:site_name" content="'. $site_name ."\" />\n";
?>
<?php print $styles; ?>
<link type="text/css" rel="stylesheet" media="all" href="//fonts.googleapis.com/css?family=Lato:300,400,700" />
<?php print $scripts; ?>
<!--[if lt IE 9]>
<link type="text/css" rel="stylesheet" media="all" href="<?php print $base_path . $directory; ?>/css/ie8.css" />
<script src="<?php print $base_path . $directory; ?>/js/respond.min.js"></script>
<script src="<?php print $base_path . $directory; ?>/js/html5shiv.min.js"></script>
<![endif]-->
</head>
<body class="<?php print $classes; ?>">
<div id="skip-link"><a href="#main-content"><?php print t('Skip to main content'); ?></a></div>
<div id="page-wrapper">
<?php if ($primary_links || $navigation): ?>
<div id="navigation-top"><div class="section clearfix">
<ul class="social-menu">
<?php
$currenturl = drupal_get_path_alias($_GET['q']);
$ESlink = '<a href="/' . $currenturl . '" title="Español">ES</a>';
$ENlink = '<a href="/en/' . $currenturl . '" title="English">EN</a>';
if ($language->language != 'es') {
$ENlink = '<strong>' . $ENlink . '</strong>';
} else {
$ESlink = '<strong>' . $ESlink . '</strong>';
}
print '<li class="lang-item">' . $ESlink . '</li>';
print '<li class="lang-item">' . $ENlink . '</li>';
?>
<?php print $secondary_links; ?>
</ul>
</div></div><!-- /.section, /#navigation-top -->
<div id="navigation" class="navbar navbar-default"><div class="section clearfix">
<nav id="main-menu" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-main">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="<?php print $language->language != 'es' ? "$base_url/$language->language" : $base_url; ?>" title="<?php print t('@site_name homepage', array('@site_name' => $site_name)); ?>" class="logo"><?php print '<img src="'. check_url($logo) .'" alt="'. $site_name .'" id="logo" />'; ?></a>
</div>
<div id="navbar-main" class="collapse navbar-collapse">
<?php print $primary_links; ?>
</div><!-- /#navbar-main -->
</nav><!-- /#main-menu -->
<?php print $navigation; ?>
</div></div><!-- /.section, /#navigation -->
<?php endif; ?>
<?php if ($title): ?>
<div id="page-title"><div class="section clearfix">
<?php
$title = '<h1 class="title">' . $title . '</h1>';
if (empty($node) && arg(0) == 'node' && is_numeric(arg(1))) {
$node = node_load(arg(1));
}
if (!empty($node)) {
$title = '<div id="' . $node->type . '-item" class="stormcomponent"></div>' . $title;
}
if (!empty($breadcrumb)) {
$title .= $breadcrumb;
}
print $title;
?>
</div></div><!-- /.section, /#page-title -->
<?php endif; ?>
<div id="page">
<header id="header" role="banner"><div class="section clearfix">
<?php if ($search_box): ?>
<div id="search-box"><?php print $search_box; ?></div>
<?php endif; ?>
<?php print $header; ?>
</div></header><!-- /.section, /#header -->
<div id="main-wrapper"><div id="main" class="clearfix<?php if ($primary_links || $navigation) { print ' with-navigation'; } ?>">
<div id="main-content" class="column">
<?php if ($tabs): ?>
<div class="tabs"><?php print $tabs; ?></div>
<?php endif; ?>
<div class="section">
<?php print $highlight; ?>
<?php print $messages; ?>
<?php print $help; ?>
<?php print $content_top; ?>
<div id="content-area">
<?php print $content; ?>
</div>
<?php print $content_bottom; ?>
</div></div><!-- /.section, /#main-content -->
<?php print $sidebar_main; ?>
</div></div><!-- /#main, /#main-wrapper -->
</div><!-- /#page -->
<?php if ($footer || $footer_message): ?>
<div id="footer">
<div class="section">
<?php if ($footer_message): ?>
<div id="footer-message"><?php print $footer_message; ?></div>
<?php endif; ?>
<?php print $footer; ?>
</div><!-- /.section -->
</div><!-- /#footer -->
<?php endif; ?>
<!-- ScrollUp button -->
<a href="#" id="scroll-top-link" class="icon-up-open<?php if (arg(0) == 'node' && arg(2) == 'edit') print ' edition'; ?>"></a>
<footer id="socket"><div class="section">
<span class='copyright'><?php print date('Y') . ' &copy; ' . ($site_name ? check_plain($site_name) : 'SuiteDesk'); ?></span>
<?php if ($secondary_links): ?>
<ul class="social-menu">
<?php print $secondary_links; ?>
</ul>
<?php endif; ?>
</div></footer><!-- /.section, /#socket -->
</div><!-- /#page-wrapper -->
<?php print $page_closure; ?>
<?php print $closure; ?>
</body>
</html>