You are here

function _ed_classified_make_edit_link in Classified Ads 5

Same name and namespace in other branches
  1. 5.2 ed_classified_utils.inc \_ed_classified_make_edit_link()
  2. 6.2 ed_classified_utils.inc \_ed_classified_make_edit_link()
  3. 7.2 ed_classified_utils.inc \_ed_classified_make_edit_link()

Make a node edit link

1 call to _ed_classified_make_edit_link()
ed_classified_admin_overview in ./ed_classified.module
Present admin options.

File

./ed_classified_utils.inc, line 429
Simple text-based classified ads module. Michael Curry, Exodus Development, Inc. exodusdev@gmail.com for more information, please visit http://exodusdev.com/drupal/modules/classified.module Copyright (c) 2006, 2007 Exodus Development, Inc. All Rights…

Code

function _ed_classified_make_edit_link($node, $text, $attributes = array()) {
  return l($text, "node/{$node->nid}/edit", array(
    'attributes' => $attributes,
  ));
}