Full ELMS Learning Network documentation
function aggregator_block_configure
cis7 aggregator.module | aggregator_block_configure($delta = '') |
cle7 aggregator.module | aggregator_block_configure($delta = '') |
elmsmedia7 aggregator.module | aggregator_block_configure($delta = '') |
icor7 aggregator.module | aggregator_block_configure($delta = '') |
meedjum_blog7 aggregator.module | aggregator_block_configure($delta = '') |
mooc7 aggregator.module | aggregator_block_configure($delta = '') |
Implements hook_block_configure().
File
- modules/
aggregator/ aggregator.module, line 364 - Used to aggregate syndicated content (RSS, RDF, and Atom).
Code
function aggregator_block_configure($delta = '') {
list($type, $id) = explode('-', $delta);
if ($type == 'category') {
$value = db_query('SELECT block FROM {aggregator_category} WHERE cid = :cid', array(':cid' => $id))->fetchField();
$form['block'] = array(
'#type' => 'select',
'#title' => t('Number of news items in block'),
'#default_value' => $value,
'#options' => drupal_map_assoc(range(2, 20)),
);
return $form;
}
}