Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
brookinsconsulting committed Feb 27, 2015
2 parents 84738ab + ac72b25 commit 097bc85
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Persistence/Content/Type/Handler.php
Expand Up @@ -280,4 +280,28 @@ public function updateFieldDefinition( $contentTypeId, $status, FieldDefinition
* @return void
*/
public function publish( $contentTypeId );

/**
* Returns content type, field definition and field type mapping information
* for search engine usage. Only searchable field definitions will be included
* in the returned data.
*
* Returns an array in the form:
*
* <code>
* array(
* "<ContentType identifier>" => array(
* "<FieldDefinition identifier>" => array(
* "field_definition_id" => "<FieldDefinition id>",
* "field_type_identifier" => "<FieldType identifier>",
* ),
* ...
* ),
* ...
* )
* </code>
*
* @return array
*/
public function getSearchableFieldMap();
}

0 comments on commit 097bc85

Please sign in to comment.