mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-12 12:28:36 +02:00
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());
|
|
}
|
|
|
|
}
|