Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- use Phalcon\Mvc\Controller;
- class IndexController extends Controller
- {
- public function indexAction()
- {
- $elements = $this->di->get("elements");
- $this->view->content = $elements->getTitle();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement