sintonia/airtime_mvc/application/controllers/EmbeddableplayerController.php
drigato 6c46f0a156 Added player preview to view
Everything is hardcoded right now
2015-03-10 16:32:35 -04:00

21 lines
No EOL
358 B
PHP

<?php
class EmbeddablePlayerController extends Zend_Controller_Action
{
public function init()
{
}
public function indexAction()
{
$form = new Application_Form_EmbeddablePlayer();
$this->view->form = $form;
}
public function embedCodeAction()
{
$this->view->layout()->disableLayout();
}
}