Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15384223
D16125.id38795.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D16125.id38795.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D16125: Allow Phame Posts to be ordered by datePublished
Attached
Detach File
Event Timeline
Log In to Comment