Skip to content

Instantly share code, notes, and snippets.

@Remo
Created July 29, 2014 18:23
Show Gist options
  • Save Remo/ebfa37aa1ef8686fb053 to your computer and use it in GitHub Desktop.
Save Remo/ebfa37aa1ef8686fb053 to your computer and use it in GitHub Desktop.
concrete5 - change sort order in seo bulk tool
<?php
/* /controllers/dashboard/system/seo/bulk_seo_tool.php */
defined('C5_EXECUTE') or die('Access Denied.');
class DashboardSystemSeoBulkSeoToolController extends Concrete5_Controller_Dashboard_System_Seo_BulkSeoTool {
public function getRequestedSearchResults() {
$searchResult = parent::getRequestedSearchResults();
$searchResult->sortByCollectionIDAscending();
return $searchResult;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment