You are here

public function FlexiformDisplayUserCategory::hook_user_categories in Flexiform 7

Define the category for for this form.

File

includes/display/user_category.display.inc, line 29
Define Display plugin for the add page.

Class

FlexiformDisplayUserCategory
Class for add page displays.

Code

public function hook_user_categories() {
  return array(
    array(
      'name' => check_plain($this->configuration['category']),
      'title' => $this->configuration['title'],
      'weight' => 0,
    ),
  );
}