Skip to content
Snippets Groups Projects
Commit d2c08ebd authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #1016458 by Jody Lynn: code style cleanup of aggregator.module.

parent 0f9cda30
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -27,9 +27,9 @@ function aggregator_help($path, $arg) { ...@@ -27,9 +27,9 @@ function aggregator_help($path, $arg) {
$output .= '<dt>' . t('Adding, editing, and deleting feeds') . '</dt>'; $output .= '<dt>' . t('Adding, editing, and deleting feeds') . '</dt>';
$output .= '<dd>' . t('Administrators can add, edit, and delete feeds, and choose how often to check each feed for newly updated items on the <a href="@feededit">Feed aggregator administration page</a>.', array('@feededit' => url('admin/config/services/aggregator'))) . '</dd>'; $output .= '<dd>' . t('Administrators can add, edit, and delete feeds, and choose how often to check each feed for newly updated items on the <a href="@feededit">Feed aggregator administration page</a>.', array('@feededit' => url('admin/config/services/aggregator'))) . '</dd>';
$output .= '<dt>' . t('OPML integration') . '</dt>'; $output .= '<dt>' . t('OPML integration') . '</dt>';
$output .= '<dd>' . t('A <a href="@aggregator-opml">machine-readable OPML file</a> of all feeds is available. OPML is an XML-based file format used to share outline-structured information such as a list of RSS feeds. Feeds can also be <a href="@import-opml">imported via an OPML file</a>.', array('@aggregator-opml' => url('aggregator/opml'), '@import-opml' => url('admin/config/services/aggregator'))) . '</dd>'; $output .= '<dd>' . t('A <a href="@aggregator-opml">machine-readable OPML file</a> of all feeds is available. OPML is an XML-based file format used to share outline-structured information such as a list of RSS feeds. Feeds can also be <a href="@import-opml">imported via an OPML file</a>.', array('@aggregator-opml' => url('aggregator/opml'), '@import-opml' => url('admin/config/services/aggregator'))) . '</dd>';
$output .= '<dt>' . t('Configuring cron') . '</dt>'; $output .= '<dt>' . t('Configuring cron') . '</dt>';
$output .= '<dd>' . t('A correctly configured <a href="@cron">cron maintenance task</a> is required to update feeds automatically.', array('@cron' => 'http://drupal.org/cron')) . '</dd>'; $output .= '<dd>' . t('A correctly configured <a href="@cron">cron maintenance task</a> is required to update feeds automatically.', array('@cron' => 'http://drupal.org/cron')) . '</dd>';
$output .= '</dl>'; $output .= '</dl>';
return $output; return $output;
case 'admin/config/services/aggregator': case 'admin/config/services/aggregator':
...@@ -195,7 +195,6 @@ function aggregator_menu() { ...@@ -195,7 +195,6 @@ function aggregator_menu() {
'title arguments' => array(2), 'title arguments' => array(2),
'page callback' => 'aggregator_page_category', 'page callback' => 'aggregator_page_category',
'page arguments' => array(2), 'page arguments' => array(2),
'access callback' => 'user_access',
'access arguments' => array('access news feeds'), 'access arguments' => array('access news feeds'),
'file' => 'aggregator.pages.inc', 'file' => 'aggregator.pages.inc',
); );
...@@ -268,7 +267,7 @@ function aggregator_menu() { ...@@ -268,7 +267,7 @@ function aggregator_menu() {
} }
/** /**
* Menu callback. * Title callback for aggregatory category pages.
* *
* @return * @return
* An aggregator category title. * An aggregator category title.
...@@ -281,7 +280,8 @@ function _aggregator_category_title($category) { ...@@ -281,7 +280,8 @@ function _aggregator_category_title($category) {
* Find out whether there are any aggregator categories. * Find out whether there are any aggregator categories.
* *
* @return * @return
* TRUE if there is at least one category and the user has access to them, FALSE otherwise. * TRUE if there is at least one category and the user has access to them, FALSE
* otherwise.
*/ */
function _aggregator_has_categories() { function _aggregator_has_categories() {
return user_access('access news feeds') && db_query('SELECT COUNT(*) FROM {aggregator_category}')->fetchField(); return user_access('access news feeds') && db_query('SELECT COUNT(*) FROM {aggregator_category}')->fetchField();
...@@ -307,7 +307,7 @@ function aggregator_permission() { ...@@ -307,7 +307,7 @@ function aggregator_permission() {
* Queues news feeds for updates once their refresh interval has elapsed. * Queues news feeds for updates once their refresh interval has elapsed.
*/ */
function aggregator_cron() { function aggregator_cron() {
$result = db_query('SELECT * FROM {aggregator_feed} WHERE queued = 0 AND checked + refresh < :time AND refresh != :never', array( $result = db_query('SELECT * FROM {aggregator_feed} WHERE queued = 0 AND checked + refresh < :time AND refresh <> :never', array(
':time' => REQUEST_TIME, ':time' => REQUEST_TIME,
':never' => AGGREGATOR_CLEAR_NEVER ':never' => AGGREGATOR_CLEAR_NEVER
)); ));
...@@ -344,16 +344,16 @@ function aggregator_cron_queue_info() { ...@@ -344,16 +344,16 @@ function aggregator_cron_queue_info() {
* Implements hook_block_info(). * Implements hook_block_info().
*/ */
function aggregator_block_info() { function aggregator_block_info() {
$block = array(); $blocks = array();
$result = db_query('SELECT cid, title FROM {aggregator_category} ORDER BY title'); $result = db_query('SELECT cid, title FROM {aggregator_category} ORDER BY title');
foreach ($result as $category) { foreach ($result as $category) {
$block['category-' . $category->cid]['info'] = t('!title category latest items', array('!title' => $category->title)); $blocks['category-' . $category->cid]['info'] = t('!title category latest items', array('!title' => $category->title));
} }
$result = db_query('SELECT fid, title FROM {aggregator_feed} WHERE block <> 0 ORDER BY fid'); $result = db_query('SELECT fid, title FROM {aggregator_feed} WHERE block <> 0 ORDER BY fid');
foreach ($result as $feed) { foreach ($result as $feed) {
$block['feed-' . $feed->fid]['info'] = t('!title feed latest items', array('!title' => $feed->title)); $blocks['feed-' . $feed->fid]['info'] = t('!title feed latest items', array('!title' => $feed->title));
} }
return $block; return $blocks;
} }
/** /**
...@@ -367,7 +367,7 @@ function aggregator_block_configure($delta = '') { ...@@ -367,7 +367,7 @@ function aggregator_block_configure($delta = '') {
'#type' => 'select', '#type' => 'select',
'#title' => t('Number of news items in block'), '#title' => t('Number of news items in block'),
'#default_value' => $value, '#default_value' => $value,
'#options' => drupal_map_assoc(array(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)) '#options' => drupal_map_assoc(range(2, 20)),
); );
return $form; return $form;
} }
...@@ -720,7 +720,8 @@ function aggregator_filter_xss($value) { ...@@ -720,7 +720,8 @@ function aggregator_filter_xss($value) {
/** /**
* Check and sanitize aggregator configuration. * Check and sanitize aggregator configuration.
* *
* Goes through all fetchers, parsers and processors and checks whether they are available. * Goes through all fetchers, parsers and processors and checks whether they are
* available.
* If one is missing resets to standard configuration. * If one is missing resets to standard configuration.
* *
* @return * @return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment