function pm_icon_delete in Drupal PM (Project Management) 7.3
Same name and namespace in other branches
- 8 pm.module \pm_icon_delete()
- 7 pm.module \pm_icon_delete()
- 7.2 pm.module \pm_icon_delete()
Provides a Project Management delete icon.
1 call to pm_icon_delete()
- pm_icon_delete_node in includes/
pm.icon.inc - Provides a delete icon for Project Management nodes.
File
- includes/
pm.icon.inc, line 48 - Icon handling by Drupal PM.
Code
function pm_icon_delete($path, $params = array()) {
$attributes = array(
'class' => array(
'popups-form',
),
);
return pm_icon_l('application_delete', $path, t('Delete'), $params, $attributes);
}