Full ELMS Learning Network documentation
aggregator-summary-items.tpl.php
×
Error message
User warning: The following module is missing from the file system: theme/theme. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (line 1156 of /var/www/html/elmsln_community/api.elmsln.org/includes/bootstrap.inc).- cis7 modules/aggregator/aggregator-summary-items.tpl.php
- cis7 sites/all/themes/ulmus/fontfolio/templates/aggregator-summary-items.tpl.php
- cis7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.php
- cle7 modules/aggregator/aggregator-summary-items.tpl.php
- cle7 sites/all/themes/ulmus/fontfolio/templates/aggregator-summary-items.tpl.php
- cle7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.php
- ecd7 modules/aggregator/aggregator-summary-items.tpl.php
- ecd7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.php
- ecd7 sites/all/themes/ulmus/fontfolio/templates/aggregator-summary-items.tpl.php
- elmsmedia7 modules/aggregator/aggregator-summary-items.tpl.php
- elmsmedia7 sites/all/themes/ulmus/fontfolio/templates/aggregator-summary-items.tpl.php
- elmsmedia7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.php
- harmony7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.php
- harmony7 sites/all/themes/ulmus/fontfolio/templates/aggregator-summary-items.tpl.php
- harmony7 modules/aggregator/aggregator-summary-items.tpl.php
- icor7 modules/aggregator/aggregator-summary-items.tpl.php
- icor7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.php
- icor7 sites/all/themes/ulmus/fontfolio/templates/aggregator-summary-items.tpl.php
- meedjum_blog7 sites/all/themes/ulmus/fontfolio/templates/aggregator-summary-items.tpl.php
- meedjum_blog7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.php
- meedjum_blog7 modules/aggregator/aggregator-summary-items.tpl.php
- mooc7 sites/all/themes/ulmus/fontfolio/templates/aggregator-summary-items.tpl.php
- mooc7 sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.php
- mooc7 modules/aggregator/aggregator-summary-items.tpl.php
Adativetheme implementation to present feeds as list items.
Each iteration generates a single feed source or category.
Adaptivetheme variables:
- $is_mobile: Mixed, requires the Mobile Detect or Browscap module to return TRUE for mobile. Note that tablets are also considered mobile devices. Returns NULL if the feature could not be detected.
- $is_tablet: Mixed, requires the Mobile Detect to return TRUE for tablets. Returns NULL if the feature could not be detected.
Available variables:
- $title: Title of the feed or category.
- $summary_list: Unordered list of linked feed items generated through theme_item_list().
- $source_url: URL to the local source or category.
See also
template_preprocess_aggregator_summary_items()
2 theme calls to aggregator-summary-items.tpl.php
- aggregator_page_categories in modules/
aggregator/ aggregator.pages.inc - Page callback: Displays all the categories used by the Aggregator module.
- aggregator_page_sources in modules/
aggregator/ aggregator.pages.inc - Page callback: Displays all the feeds used by the aggregator.
5 string references to the theme hook from aggregator-summary-items.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.
- aggregator_form_aggregator_admin_form_alter in modules/
aggregator/ aggregator.processor.inc - Implements hook_form_aggregator_admin_form_alter().
- aggregator_page_categories in modules/
aggregator/ aggregator.pages.inc - Page callback: Displays all the categories used by the Aggregator module.
- aggregator_page_sources in modules/
aggregator/ aggregator.pages.inc - Page callback: Displays all the feeds used by the aggregator.
- aggregator_theme in modules/
aggregator/ aggregator.module - Implements hook_theme().
- aggregator_uninstall in modules/
aggregator/ aggregator.install - Implements hook_uninstall().
File
sites/all/themes/ulmus/adaptivetheme/at_core/templates/aggregator-summary-items.tpl.phpView source
- <?php
- /**
- * @file
- * Adativetheme implementation to present feeds as list items.
- *
- * Each iteration generates a single feed source or category.
- *
- * Adaptivetheme variables:
- * - $is_mobile: Mixed, requires the Mobile Detect or Browscap module to return
- * TRUE for mobile. Note that tablets are also considered mobile devices.
- * Returns NULL if the feature could not be detected.
- * - $is_tablet: Mixed, requires the Mobile Detect to return TRUE for tablets.
- * Returns NULL if the feature could not be detected.
- *
- * Available variables:
- * - $title: Title of the feed or category.
- * - $summary_list: Unordered list of linked feed items generated through
- * theme_item_list().
- * - $source_url: URL to the local source or category.
- *
- * @see template_preprocess()
- * @see template_preprocess_aggregator_summary_items()
- *
- * @ingroup themeable
- */
- ?>
- <section id="feed-<?php print drupal_html_class($title); ?>" class="feed">
- <h2 class="summary-title"><?php print $title; ?></h2>
- <?php print $summary_list; ?>
- <p class="read-more"><a href="<?php print $source_url; ?>"><?php print t('More'); ?></a></p>
- </section>
-