Full ELMS Learning Network documentation
accessibility-test.tpl.php
- cis7 sites/all/modules/ulmus/accessibility/accessibility-test.tpl.php
- cle7 sites/all/modules/ulmus/accessibility/accessibility-test.tpl.php
- ecd7 sites/all/modules/ulmus/accessibility/accessibility-test.tpl.php
- elmsmedia7 sites/all/modules/ulmus/accessibility/accessibility-test.tpl.php
- harmony7 sites/all/modules/ulmus/accessibility/accessibility-test.tpl.php
- icor7 sites/all/modules/ulmus/accessibility/accessibility-test.tpl.php
- meedjum_blog7 sites/all/modules/ulmus/accessibility/accessibility-test.tpl.php
- mooc7 sites/all/modules/ulmus/accessibility/accessibility-test.tpl.php
A basic template for model entities
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 name of the model
- $url: The standard URL for viewing a model entity
- $page: TRUE if this is the main view page $url points too.
- $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-profile
- model-{TYPE}
Other variables:
- $classes_array: Array of html class attribute values. It is flattened into a string within the variable $classes.
See also
29 string references to the theme hook from accessibility-test.tpl.php
Note: this list is generated by looking for the string for this theme hook, so it may include some references that are not actually using this theme hook.
- AccessibilityTestController::save in sites/
all/ modules/ ulmus/ accessibility/ accessibility.module - accessibility_admin_existing_tests in sites/
all/ modules/ ulmus/ accessibility/ accessibility.admin.inc - List existing accessibility tests. @todo - add a filter form
- accessibility_entity_info in sites/
all/ modules/ ulmus/ accessibility/ accessibility.module - Implements hook_entity_info().
- accessibility_features_api in sites/
all/ modules/ ulmus/ accessibility/ accessibility.module - Implements hook_features_api().
- accessibility_field_extra_fields in sites/
all/ modules/ ulmus/ accessibility/ accessibility.module - Implements hook_field_extra_fields().
File
sites/all/modules/ulmus/accessibility/accessibility-test.tpl.phpView source
- <?php
-
- /**
- * @file
- * A basic template for model entities
- *
- * 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 name of the model
- * - $url: The standard URL for viewing a model entity
- * - $page: TRUE if this is the main view page $url points too.
- * - $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-profile
- * - model-{TYPE}
- *
- * Other variables:
- * - $classes_array: Array of html class attribute values. It is flattened
- * into a string within the variable $classes.
- *
- * @see template_preprocess()
- * @see template_preprocess_entity()
- * @see template_process()
- */
- ?>
- <div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
- <?php if (!$page): ?>
- <h2<?php print $title_attributes; ?>>
- <a href="<?php print $url; ?>"><?php print $title; ?></a>
- </h2>
- <?php endif; ?>
-
- <div class="content" id="accessibility-test-content"<?php print $content_attributes; ?>>
- <?php
- print render($content);
- ?>
- </div>
- </div>
-