You are here

function pm_icon_add in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 pm.module \pm_icon_add()
  2. 7 pm.module \pm_icon_add()
  3. 7.2 pm.module \pm_icon_add()

Provides a Project Management add icon.

1 call to pm_icon_add()
pm_icon_add_node in includes/pm.icon.inc
Provides an add icon for Project Management nodes.

File

includes/pm.icon.inc, line 32
Icon handling by Drupal PM.

Code

function pm_icon_add($path, $params = array()) {
  $attributes = array(
    'class' => array(
      'popups-form',
    ),
  );
  return pm_icon_l('application_add', $path, t('Add'), $params, $attributes);
}