function pm_icon_delete in Drupal PM (Project Management) 7.2
Same name and namespace in other branches
- 8 pm.module \pm_icon_delete()
- 7.3 includes/pm.icon.inc \pm_icon_delete()
- 7 pm.module \pm_icon_delete()
Provides a Project Management delete icon.
1 call to pm_icon_delete()
- pm_icon_delete_node in ./
pm.module - Provides a delete icon for Project Management nodes.
File
- ./
pm.module, line 469 - Main module file for the Project Management module.
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);
}