Static Public Member Functions | |
static | getDefaultMetadata () |
static | getDesignerRulesType () |
static | getModelForMetadataClassName () |
Protected Member Functions | |
renderFiltersContent ($form) | |
Protected Attributes | |
$showAdvancedSearch = false |
Definition at line 37 of file ImagesModalSearchView.php.
static getDefaultMetadata | ( | ) | [static] |
Returns meta data for use in automatically generating the view. The meta data is comprised of two panels, n rows, and then n cells. Each cell can have 1 or more elements.
For search view, there should only be two panels. The second panel is hidden by default in the user interface and is where the 'advanced search' inputs are placed.
The element takes 3 parameters. The first parameter is 'attributeName' The second parameter is 'type' and refers to the element type. Using a type of 'Text' would utilize the TextElement class. The third parameter is 'wide' and refers to how many cells the field should span. An example of the 'wide' => true usage would be for a text description field. Here is an example meta data that defines a search layout with two panels. Each panel has 1 row with 2 cells each
<?php $metadata = array( 'global' => array( 'panels' => array( array( 'title' => 'Basic Search', 'rows' => array( array('cells' => array( array( 'elements' => array( array('attributeName' => 'name', 'type' => 'Text'), ), ), array( 'elements' => array( array('attributeName' => 'officePhone', 'type' => 'Text'), ), ), ) ), ), ), array( 'title' => 'Advanced Search', 'rows' => array( array('cells' => array( array( 'elements' => array( array('attributeName' => 'industry', 'type' => 'DropDown'), ), ), array( 'elements' => array( array('attributeName' => 'officeFax', 'type' => 'Text'), ), ), ) ), ), ), ), ), ); ?>
Reimplemented from SearchView.
Definition at line 41 of file ImagesModalSearchView.php.
static getDesignerRulesType | ( | ) | [static] |
Override in each sub-class if you have applicable designer rules for handling the modification of metadata layouts
Reimplemented from SearchView.
Definition at line 68 of file ImagesModalSearchView.php.
static getModelForMetadataClassName | ( | ) | [static] |
Override in each sub-class if you have a different model form to use than the primary model for the module for this view
Reimplemented from MetadataView.
Definition at line 73 of file ImagesModalSearchView.php.
renderFiltersContent | ( | $ | form | ) | [protected] |
This should be used to render the filters buttons element
$form |
Reimplemented from SearchView.
Definition at line 78 of file ImagesModalSearchView.php.