function pm_icon_delete in Drupal PM (Project Management) 7
Same name and namespace in other branches
- 8 pm.module \pm_icon_delete()
- 7.3 includes/pm.icon.inc \pm_icon_delete()
- 7.2 pm.module \pm_icon_delete()
Provides a Project Management delete icon.
2 calls to pm_icon_delete()
- pm_attribute_list_form in ./
pm.admin.inc - Defines form for attribute list.
- pm_icon_delete_node in ./
pm.module - Provides a delete icon for Project Management nodes.
File
- ./
pm.module, line 728 - 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);
}