You are here

function themekey_book_themekey_properties in ThemeKey 6

Same name and namespace in other branches
  1. 6.4 modules/themekey.book.inc \themekey_book_themekey_properties()
  2. 6.2 modules/themekey.book.inc \themekey_book_themekey_properties()
  3. 6.3 modules/themekey.book.inc \themekey_book_themekey_properties()
  4. 7.3 modules/themekey.book.inc \themekey_book_themekey_properties()
  5. 7 modules/themekey.book.inc \themekey_book_themekey_properties()
  6. 7.2 modules/themekey.book.inc \themekey_book_themekey_properties()

File

modules/themekey.book.inc, line 3

Code

function themekey_book_themekey_properties() {

  // Attributes for properties
  $attributes = array();
  $attributes['book:bid'] = array(
    'description' => t('Book: ID'),
  );
  $attributes['book:has_children'] = array(
    'description' => t('Book: Has Children'),
  );
  return array(
    'attributes' => $attributes,
  );
}