You are here

function _ed_classified_displayname_parms in Classified Ads 5

Same name and namespace in other branches
  1. 5.2 ed_classified_utils.inc \_ed_classified_displayname_parms()
  2. 6.2 ed_classified_utils.inc \_ed_classified_displayname_parms()
  3. 7.2 ed_classified_utils.inc \_ed_classified_displayname_parms()
4 calls to _ed_classified_displayname_parms()
ed_classified_block in ./ed_classified.module
Implementation of hook_block().
ed_classified_menu in ./ed_classified.module
Implementation of hook_menu().
ed_classified_views_data in ./ed_classified_views.inc
_ed_classified_send_user_notification_email in ./ed_classified_notifications.inc
Send an email notification to the specified user

File

./ed_classified_utils.inc, line 420
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_displayname_parms() {
  $name = _ed_classified_displayname();
  $parms = array(
    '@name' => $name,
    '!name' => $name,
    '%name' => $name,
  );
  return $parms;
}