1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-15 19:32:40 +01:00
phorge-phorge/src/applications/phame/controller/blog/PhameBlogController.php
Chad Little 5024560de1 Modernize Phame
Summary: Updates Phame for new modern methods.

Test Plan: New blog, edit blog, new post, edit post, publish post.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D14419
2015-11-05 15:29:59 -08:00

10 lines
212 B
PHP

<?php
abstract class PhameBlogController extends PhameController {
public function buildApplicationMenu() {
return $this->newApplicationMenu()
->setSearchEngine(new PhameBlogSearchEngine());
}
}