Funciona: - Usuario - Empresa git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@2 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
34 lines
842 B
PHP
34 lines
842 B
PHP
<?php
|
|
/* @var $this EmpresaController */
|
|
/* @var $model Empresa */
|
|
|
|
$this->breadcrumbs=array(
|
|
'Empresas'=>array('index'),
|
|
$model->id,
|
|
);
|
|
|
|
$this->menu=array(
|
|
array('label'=>'List Empresa', 'url'=>array('index')),
|
|
array('label'=>'Create Empresa', 'url'=>array('create')),
|
|
array('label'=>'Update Empresa', 'url'=>array('update', 'id'=>$model->id)),
|
|
array('label'=>'Delete Empresa', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')),
|
|
array('label'=>'Manage Empresa', 'url'=>array('admin')),
|
|
);
|
|
?>
|
|
|
|
<h1>View Empresa #<?php echo $model->id; ?></h1>
|
|
|
|
<?php $this->widget('zii.widgets.CDetailView', array(
|
|
'data'=>$model,
|
|
'attributes'=>array(
|
|
'id',
|
|
'cif',
|
|
'nombre',
|
|
'email',
|
|
'pagina_web',
|
|
'empleados',
|
|
'direccion',
|
|
'descripcion',
|
|
),
|
|
)); ?>
|