You are here

function pm_icon_edit in Drupal PM (Project Management) 7.2

Same name and namespace in other branches
  1. 8 pm.module \pm_icon_edit()
  2. 7.3 includes/pm.icon.inc \pm_icon_edit()
  3. 7 pm.module \pm_icon_edit()

Provides a Project Management edit icon.

1 call to pm_icon_edit()
pm_icon_edit_node in ./pm.module
Provides an edit icon for Project Management nodes.

File

./pm.module, line 461
Main module file for the Project Management module.

Code

function pm_icon_edit($path, $params = array()) {
  $attributes = array(
    'class' => array(
      'popups-form',
    ),
  );
  return pm_icon_l('application_edit', $path, t('Edit'), $params, $attributes);
}