| Versionen | |
|---|---|
| drupal6 – drupal7 | aggregator_admin_remove_feed($form_state, $feed) |
modules/
<?php
function aggregator_admin_remove_feed($form_state, $feed) {
return confirm_form(
array(
'feed' => array(
'#type' => 'value',
'#value' => $feed,
),
),
t('Are you sure you want to remove all items from the feed %feed?', array('%feed' => $feed->title)),
'admin/content/aggregator',
t('This action cannot be undone.'),
t('Remove items'),
t('Cancel')
);
}
?>
Kommentare
Kommentar hinzufügen