Page MenuHomePhabricator

D16125.id38795.diff
No OneTemporary

D16125.id38795.diff

diff --git a/src/applications/phame/query/PhamePostQuery.php b/src/applications/phame/query/PhamePostQuery.php
--- a/src/applications/phame/query/PhamePostQuery.php
+++ b/src/applications/phame/query/PhamePostQuery.php
@@ -122,6 +122,41 @@
return $where;
}
+ protected function getPrimaryTableAlias() {
+ return 'phame_post';
+ }
+
+ public function getBuiltinOrders() {
+ return array(
+ 'name' => array(
+ 'vector' => array('datePublished', 'id'),
+ 'name' => pht('Publish Date'),
+ ),
+ ) + parent::getBuiltinOrders();
+ }
+
+ public function getOrderableColumns() {
+ return parent::getOrderableColumns() + array(
+ 'datePublished' => array(
+ 'table' => $this->getPrimaryTableAlias(),
+ 'column' => 'datePublished',
+ 'type' => 'int',
+ 'reverse' => false,
+ ),
+ );
+ }
+
+ protected function getPagingValueMap($cursor, array $keys) {
+ $post = $this->loadCursorObject($cursor);
+
+ $map = array(
+ 'datePublished' => $post->getDatePublished(),
+ 'id' => $post->getID(),
+ );
+
+ return $map;
+ }
+
public function getQueryApplicationClass() {
// TODO: Does setting this break public blogs?
return null;

File Metadata

Mime Type
text/plain
Expires
Sat, Mar 15, 7:11 PM (2 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7702017
Default Alt Text
D16125.id38795.diff (1 KB)

Event Timeline