You are here

entity--menu-fields.tpl.php in Menu Item Fields 7

Used to override the default entity template.

Available variables:

  • $content: An array of comment items. Use render($content) to print them all, or print a subset such as render($content['field_example']). Use hide($content['field_example']) to temporarily suppress the printing of a given element.
  • $title: The (sanitized) entity label.
  • $url: Direct url of the current entity if specified.
  • $page: Flag for the full page state.
  • $classes: String of classes that can be used to style contextually through CSS. It can be manipulated through the variable $classes_array from preprocess functions. By default the following classes are available, where the parts enclosed by {} are replaced by the appropriate values:

    • entity-{ENTITY_TYPE}
    • {ENTITY_TYPE}-{BUNDLE}

Other variables:

  • $classes_array: Array of html class attribute values. It is flattened into a string within the variable $classes.
  • $menu_fields: The full menu item field entity
  • $field_*: Any fields available for the current menu item.

See also

entity.tpl.php

File

templates/entity--menu-fields.tpl.php
View source
<?php

/**
 * @file
 * Used to override the default entity template.
 * @see entity.tpl.php
 *
 * Available variables:
 * - $content:
 *   An array of comment items. Use render($content) to print them all, or
 *   print a subset such as render($content['field_example']). Use
 *   hide($content['field_example']) to temporarily suppress the printing of a
 *   given element.
 * - $title:
 *   The (sanitized) entity label.
 * - $url:
 *   Direct url of the current entity if specified.
 * - $page:
 *   Flag for the full page state.
 * - $classes:
 *   String of classes that can be used to style contextually through
 *   CSS. It can be manipulated through the variable $classes_array from
 *   preprocess functions. By default the following classes are available, where
 *   the parts enclosed by {} are replaced by the appropriate values:
 *   - entity-{ENTITY_TYPE}
 *   - {ENTITY_TYPE}-{BUNDLE}
 *
 * Other variables:
 * - $classes_array: Array of html class attribute values. It is flattened
 *   into a string within the variable $classes.
 * - $menu_fields: The full menu item field entity
 * - $field_*: Any fields available for the current menu item.
 */
?>
<div class="<?php

print $classes;
?> clearfix"<?php

print $attributes;
?>>
  <div class="content"<?php

print $content_attributes;
?>>
    <?php

print render($content);
?>
  </div>
</div>