You are here

function _ed_classified_cfg_varname in Classified Ads 7.2

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

config variable helpers

3 calls to _ed_classified_cfg_varname()
ed_classified_admin_settings in ./ed_classified_settings.inc
Implementation of hook_settings(). TODO - this is hardcoded to the Classified Ads vid - needs to be able to handle any taxonomy assigned
_ed_classified_variable_get in ./ed_classified_utils.inc
_ed_classified_variable_set in ./ed_classified_utils.inc

File

./ed_classified_utils.inc, line 29
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_cfg_varname($name) {

  // ensure unique varnames for this module
  return EDI_CLASSIFIED_MODULE_NAME . '_' . $name;
}