This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if breadcrumb is defined %} | |
<nav class="breadcrumb" role="navigation"> | |
<h2 class="element-invisible">{{ 'You are here'|t }}</h2> | |
<ol> | |
{% for item in breadcrumb %} | |
{% if loop.last %} | |
<li>{{ item }}</li> | |
{% else %} | |
<li>{{ item }} » </li> | |
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
/** | |
* @file | |
* Returns HTML for a breadcrumb trail. | |
* | |
* @param $variables | |
* An associative array containing: | |
* - breadcrumb: An array containing the breadcrumb links. | |
* | |
* @ingroup themeable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
/** | |
* @file | |
* Template for a 2 column layout. | |
* | |
* This template provides a two column display layout, with each column | |
* roughly equal in width. | |
* | |
* Variables: | |
* - attributes: Attributes to use for the layout like additional classes and id. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* core/modules/node/templates/node.twig */ | |
class __TwigTemplate_c2e554eca926f9ac6a6ef9a1b6d96476 extends Drupal\Core\Template\TwigTemplate | |
{ | |
public function __construct(Twig_Environment $env) | |
{ | |
parent::__construct($env); | |
$this->parent = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* core/modules/node/templates/node.twig */ | |
class __TwigTemplate_c2e554eca926f9ac6a6ef9a1b6d96476 extends Drupal\Core\Template\TwigTemplate | |
{ | |
public function __construct(Twig_Environment $env) | |
{ | |
parent::__construct($env); | |
$this->parent = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'core/lib/Drupal/Core/Template/TwigReference.php'; | |
use Drupal\Core\Template\TwigReference; | |
function getAttribute($val, $key) { | |
//$_GLOBALS['ref'] = &$val[$key]; | |
return $val[$key]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* core/modules/node/templates/node.twig */ | |
class __TwigTemplate_c2e554eca926f9ac6a6ef9a1b6d96476 extends Drupal\Core\Template\TwigTemplate | |
{ | |
public function __construct(Twig_Environment $env) | |
{ | |
parent::__construct($env); | |
$this->parent = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* core/modules/node/templates/node.twig */ | |
class __TwigTemplate_c2e554eca926f9ac6a6ef9a1b6d96476 extends Drupal\Core\Template\TwigTemplate | |
{ | |
public function __construct(Twig_Environment $env) | |
{ | |
parent::__construct($env); | |
$this->parent = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$run1 = $_SERVER['argv'][1]; | |
$run2 = $_SERVER['argv'][2]; | |
$extra = isset($_SERVER['argv'][3])?$_SERVER['argv'][3]:''; | |
$source = isset($_SERVER['argv'][4])?$_SERVER['argv'][4]:'drupal-perf'; | |
include_once '/var/www/xhprof/xhprof_lib/utils/xhprof_lib.php'; | |
include_once '/var/www/xhprof/xhprof_lib/utils/xhprof_runs.php'; | |
include_once '/var/www/xhprof/xhprof_lib/display/xhprof.php'; |
OlderNewer