Skip to content

Instantly share code, notes, and snippets.

@kinglozzer
Created March 12, 2014 11:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kinglozzer/9dd630ce53e6f4a9666f to your computer and use it in GitHub Desktop.
Save kinglozzer/9dd630ce53e6f4a9666f to your computer and use it in GitHub Desktop.
<?php
// Your config stuff here
SiteTree::add_extension('ReverseSiteTreeExtension');
<?php
class ReverseSiteTreeExtension extends Extension {
public function augmentSQL(SQLQuery &$query) {
$query->setOrderBy("\"Sort\" DESC");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment