You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/conf/search_indexing.conf
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@
7
7
# DONT_INCLUDE_IN_SEARCH_FORM (causes field to not be includable in user-defined search forms)
8
8
# BOOST (numeric "boost" value to index field with; higher values will cause search hits on the boosted field to count for more when sorting by relevance)
9
9
# INDEX_AS_IDNO (causes value to be indexed with various permutations for flexible retrieval as a record identifer)
10
+
# INDEX_AS_MIMETYPE (causes value to be indexed as a mimetype, including both the literal mimetype and the display text value for the type)
10
11
# INDEX_ANCESTORS (enables hierarchical indexing for field, assuming it is in an hierarchical table, resulting in all values for this field in
11
12
# records above the subject in the hierarchy being indexing against the subject)
12
13
# INDEX_ANCESTORS_START_AT_LEVEL (forces hierarchical indexing to start X levels down from the root. This allows you to omit the very highest, and least selective, levels of
Copy file name to clipboardExpand all lines: app/lib/ca/Browse/BrowseEngine.php
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -971,6 +971,7 @@ public function getInfoForFacetsWithContent() {
971
971
* limitToModifiedOn = if set returned results will be limited to rows modified within the specified date range. The value should be a date/time expression parse-able by TimeExpressionParser
972
972
* user_id = If set item level access control is performed relative to specified user_id, otherwise defaults to logged in user
973
973
* expandResultsHierarchically = expand result set items that are hierarchy roots to include their entire hierarchy. [Default is false]
974
+
* rootRecordsOnly = only return records that are the root of whatever hierarchy they are in. [Default is false]
974
975
*
975
976
* @return bool True on success, null if the browse could not be executed (Eg. no settings), false no error
976
977
*/
@@ -1731,6 +1732,8 @@ public function execute($pa_options=null) {
0 commit comments