EditController.php
4.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
/**
* i-Educar - Sistema de gestão escolar
*
* Copyright (C) 2006 Prefeitura Municipal de Itajaí
* <ctima@itajai.sc.gov.br>
*
* Este programa é software livre; você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Geral GNU conforme publicada pela Free
* Software Foundation; tanto a versão 2 da Licença, como (a seu critério)
* qualquer versão posterior.
*
* Este programa é distribuído na expectativa de que seja útil, porém, SEM
* NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU
* ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral
* do GNU para mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Geral do GNU junto
* com este programa; se não, escreva para a Free Software Foundation, Inc., no
* endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
*
* @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br>
* @category i-Educar
* @license @@license@@
* @package ComponenteCurricular
* @subpackage Modules
* @since Arquivo disponível desde a versão 1.1.0
* @version $Id$
*/
require_once 'Core/Controller/Page/EditController.php';
require_once 'ComponenteCurricular/Model/ComponenteDataMapper.php';
require_once 'ComponenteCurricular/Model/TipoBase.php';
/**
* EditController class.
*
* @author Eriksen Costa Paixão <eriksen.paixao_bs@cobra.com.br>
* @category i-Educar
* @license @@license@@
* @package ComponenteCurricular
* @subpackage Modules
* @since Classe disponível desde a versão 1.1.0
* @version @@package_version@@
*/
class EditController extends Core_Controller_Page_EditController
{
protected $_dataMapper = 'ComponenteCurricular_Model_ComponenteDataMapper';
protected $_titulo = 'Cadastro de componente curricular';
protected $_processoAp = 946;
protected $_nivelAcessoOption = App_Model_NivelAcesso::INSTITUCIONAL;
protected $_saveOption = TRUE;
protected $_deleteOption = FALSE;
protected $_formMap = array(
'instituicao' => array(
'label' => 'Instituição',
'help' => '',
),
'nome' => array(
'label' => 'Nome',
'help' => 'Nome por extenso do componente.',
),
'abreviatura' => array(
'label' => 'Nome abreviado',
'help' => 'Nome abreviado do componente.',
'entity' => 'abreviatura'
),
'tipo_base' => array(
'label' => 'Base curricular',
'help' => '',
'entity' => 'tipo_base'
),
'area_conhecimento' => array(
'label' => 'Área conhecimento',
'help' => '',
'entity' => 'area_conhecimento'
),
);
protected function _preRender()
{
parent::_preRender();
Portabilis_View_Helper_Application::loadStylesheet($this, 'intranet/styles/localizacaoSistema.css');
$nomeMenu = $this->getRequest()->id == null ? "Cadastrar" : "Editar";
$localizacao = new LocalizacaoSistema();
$localizacao->entradaCaminhos( array(
$_SERVER['SERVER_NAME']."/intranet" => "Início",
"educar_index.php" => "i-Educar - Escola",
"" => "$nomeMenu componente curricular"
));
$this->enviaLocalizacao($localizacao->montar());
}
/**
* @see clsCadastro#Gerar()
*/
public function Gerar()
{
$this->campoOculto('id', $this->getEntity()->id);
// Instituição
$instituicoes = App_Model_IedFinder::getInstituicoes();
$this->campoLista('instituicao', $this->_getLabel('instituicao'),
$instituicoes, $this->getEntity()->instituicao);
// Nome
$this->campoTexto('nome', $this->_getLabel('nome'), $this->getEntity()->nome,
50, 200, TRUE, FALSE, FALSE, $this->_getHelp('nome'));
// Abreviatura
$this->campoTexto('abreviatura', $this->_getLabel('abreviatura'),
$this->getEntity()->abreviatura, 50, 25, TRUE, FALSE,
FALSE, $this->_getHelp('abreviatura'));
// Tipo Base
$tipoBase = ComponenteCurricular_Model_TipoBase::getInstance();
$this->campoRadio('tipo_base', $this->_getLabel('tipo_base'),
$tipoBase->getEnums(), $this->getEntity()->get('tipo_base'));
// Área de conhecimento
$areas = $this->getDataMapper()->findAreaConhecimento();
$areas = CoreExt_Entity::entityFilterAttr($areas, 'id', 'nome');
$this->campoLista('area_conhecimento', $this->_getLabel('area_conhecimento'),
$areas, $this->getEntity()->get('area_conhecimento'));
}
}