You are here

function theme_ed_classified_category_name in Classified Ads 7.2

Same name and namespace in other branches
  1. 5.2 ed_classified_themefuncs.inc \theme_ed_classified_category_name()
  2. 5 ed_classified_themefuncs.inc \theme_ed_classified_category_name()
  3. 6.2 ed_classified_themefuncs.inc \theme_ed_classified_category_name()
1 theme call to theme_ed_classified_category_name()
theme_ed_classified_category_list_row in ./ed_classified_themefuncs.inc

File

./ed_classified_themefuncs.inc, line 184
$ 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…

Code

function theme_ed_classified_category_name($cat) {
  module_load_include('inc', 'ed_classified', 'ed_classified_utils');
  return '<div class=\'classified-cat-name\'>' . l($cat->name, _ed_classified_make_category_path($cat->tid), array(
    'attributes' => array(
      'title' => $cat->description,
    ),
  )) . "</div>\n";
}