Created
January 30, 2015 17:21
-
-
Save jhedstrom/6107a6f15c5f1e84425c to your computer and use it in GitHub Desktop.
Revisions
-
jhedstrom created this gist
Jan 30, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,49 @@ <?php /** * Provide actual overridden view config. */ protected function getOverriddenView() { $view = array( 'display' => array( 'default' => array( 'display_options' => array( 'sorts' => array( // We need to redeclare other sorts here too, since the order matters!!. 'sticky' => array(), 'weight' => array( 'id' => 'weight', 'table' => 'taxonomy_index', 'field' => 'weight', 'relationship' => 'none', 'group_type' => 'group', 'admin_label' => '', 'order' => 'ASC', 'exposed' => false, 'expose' => array( 'label' => '', ), 'plugin_id' => 'standard', ), 'created' => array( 'id' => 'created', 'table' => 'taxonomy_index', 'field' => 'created', 'order' => 'DESC', 'plugin_id' => 'date', 'relationship' => 'none', 'group_type' => 'group', 'admin_label' => '', 'exposed' => false, 'expose' => array( 'label' => '', ), 'granularity' => 'second', ), ), ), ), ), ); return $view; }