1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-09 02:48:41 +02:00
phorge-phorge/src/applications/phame/controller/blog/PhameBlogEditController.php
Chad Little 36bfff3898 Give PhameBlog an EditEngine
Summary: This seems to work, but I couldn't figure out how to pass over a Caption for a text field.

Test Plan: New blog, Edit blog.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D14770
2015-12-16 11:56:53 -08:00

11 lines
235 B
PHP

<?php
final class PhameBlogEditController extends PhameBlogController {
public function handleRequest(AphrontRequest $request) {
return id(new PhameBlogEditEngine())
->setController($this)
->buildResponse();
}
}