18 lines
354 B
PHP
18 lines
354 B
PHP
<?php
|
|
/* @var $this VideoController */
|
|
/* @var $model Video */
|
|
|
|
$this->breadcrumbs=array(
|
|
'Videos'=>array('index'),
|
|
'Create',
|
|
);
|
|
|
|
$this->menu=array(
|
|
array('label'=>'List Video', 'url'=>array('index')),
|
|
array('label'=>'Manage Video', 'url'=>array('admin')),
|
|
);
|
|
?>
|
|
|
|
<h1>Create Video</h1>
|
|
|
|
<?php $this->renderPartial('_form', array('model'=>$model)); ?>
|