mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
5024560de1
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
10 lines
212 B
PHP
10 lines
212 B
PHP
<?php
|
|
|
|
abstract class PhameBlogController extends PhameController {
|
|
|
|
public function buildApplicationMenu() {
|
|
return $this->newApplicationMenu()
|
|
->setSearchEngine(new PhameBlogSearchEngine());
|
|
}
|
|
|
|
}
|