当前位置: 首页>>代码示例>>PHP>>正文


PHP View::Factory方法代码示例

本文整理汇总了PHP中View::Factory方法的典型用法代码示例。如果您正苦于以下问题:PHP View::Factory方法的具体用法?PHP View::Factory怎么用?PHP View::Factory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在View的用法示例。


在下文中一共展示了View::Factory方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: formulario

 public function formulario($id = FALSE)
 {
     $grupo = ORM::Factory('grupo_procedimento', $id);
     $view = View::Factory('grupo_procedimentos/formulario');
     $view->set('grupo', $grupo);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:7,代码来源:grupo_procedimentos.php

示例2: index

 public function index()
 {
     $procedimentos = ORM::Factory('procedimento')->lista_semana();
     $view = View::Factory('home/index');
     $view->set('procedimentos', $procedimentos);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:7,代码来源:home.php

示例3: formulario

 public function formulario($id = FALSE)
 {
     $advogado = ORM::Factory('advogado', $id);
     $view = View::Factory('advogados/formulario');
     $view->set('advogado', $advogado);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:7,代码来源:advogados.php

示例4: formulario

 public function formulario($id = FALSE)
 {
     $pessoa = ORM::Factory('pessoa', $id);
     $view = View::Factory('pessoas/formulario');
     $view->set('pessoa', $pessoa);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:7,代码来源:pessoas.php

示例5: formulario

 public function formulario($id = 0)
 {
     $esfera = ORM::Factory('esfera', $id);
     $view = View::Factory('esferas/formulario');
     $view->set('esfera', $esfera);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:7,代码来源:esferas.php

示例6: __toString

 public function __toString()
 {
     //   form::input($this->field_name,$this->field_value);
     if ($this->field_value == "") {
         $this->field_value = array();
     }
     $view = View::Factory("multiple")->set("values", $this->field_value)->set("name", $this->field_name)->render();
     return $view;
 }
开发者ID:brojasmeneses,项目名称:floreriarosabel,代码行数:9,代码来源:MultipleCharField.php

示例7: formulario

 public function formulario($id = FALSE, $form_action = FALSE)
 {
     $usuario = ORM::Factory('usuario', $id);
     $grupos = ORM::Factory('grupo_acesso')->select_list('id', 'nome');
     $view = View::Factory('usuarios/formulario');
     $view->set('usuario', $usuario);
     $view->set('grupos', $grupos);
     $view->set('form_action', $form_action);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:10,代码来源:usuarios.php

示例8: formulario

 public function formulario($id = 0, $armario_id = 0)
 {
     $gaveta = ORM::Factory('gaveta', $id);
     if (!$gaveta->armario_id) {
         $gaveta->armario_id = $armario_id;
     }
     $armario = ORM::Factory('armario');
     $view = View::Factory('gavetas/formulario');
     $view->set('gaveta', $gaveta);
     $view->set('armario', $armario);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:12,代码来源:gavetas.php

示例9: formulario

 public function formulario($id = 0, $esfera_id = 0)
 {
     $orgao = ORM::Factory('orgao', $id);
     if (!$orgao->esfera_id) {
         $orgao->esfera_id = $esfera_id;
     }
     $esfera = ORM::Factory('esfera');
     $view = View::Factory('orgaos/formulario');
     $view->set('orgao', $orgao);
     $view->set('esfera', $esfera);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:12,代码来源:orgaos.php

示例10: index

 function index()
 {
     $this->_NoTemplate();
     $lib = new Category();
     $lib->index();
     $content = $lib->GetContent();
     $title = Kohana::config("core.title_page") . $lib->GetTitle();
     //  egg
     $widget = $this->GetWidgets();
     $html = View::Factory('intro')->set("widget", $widget)->set("title", $title)->set("content", $content);
     echo $html;
 }
开发者ID:brojasmeneses,项目名称:floreriarosabel,代码行数:12,代码来源:Intro.php

示例11: formulario

 public function formulario($id = 0, $grupo_procedimento_id = 0)
 {
     $tipo = ORM::Factory('tipo_procedimento', $id);
     if (!$tipo->grupo_procedimento_id) {
         $tipo->grupo_procedimento_id = $grupo_procedimento_id;
     }
     $grupo = ORM::Factory('grupo_procedimento');
     $view = View::Factory('tipo_procedimentos/formulario');
     $view->set('tipo', $tipo);
     $view->set('grupo', $grupo);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:12,代码来源:tipo_procedimentos.php

示例12: formulario

 public function formulario($id = FALSE)
 {
     $processo = ORM::Factory('processo', $id);
     $pessoas = ORM::Factory('pessoa')->select_list('id', 'nome');
     $orgaos = ORM::Factory('esfera')->select_list_with_childrens();
     $gavetas = ORM::Factory('armario')->select_list_with_childrens();
     $view = View::Factory('processos/formulario');
     $view->set('processo', $processo);
     $view->set('pessoas', $pessoas);
     $view->set('orgaos', $orgaos);
     $view->set('gavetas', $gavetas);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:13,代码来源:processos.php

示例13: formulario

 public function formulario($id = FALSE)
 {
     $grupo = ORM::Factory('grupo_acesso', $id);
     $metodos = objects::get_controllers_with_methods();
     //remove os metodos desportegidos
     //Kohana::config('vigilant.controllers_exception')
     foreach (Kohana::config('vigilant.controllers_exception') as $metodo_livre) {
         unset($metodos[ucfirst($metodo_livre)]);
     }
     $view = View::Factory('grupo_acessos/formulario');
     $view->set('grupo', $grupo);
     $view->set('metodos', $metodos);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:14,代码来源:grupo_acessos.php

示例14: formulario

 public function formulario($id = FALSE, $processo_id = FALSE)
 {
     $procedimento = ORM::Factory('procedimento', $id);
     $advogados = ORM::Factory('advogado')->select_list('id', 'nome');
     $advogados[0] = 'Não Definido';
     //$advogados = array_merge(array(0 => 'Não definido'), $advogados);
     $tipo_procedimentos = ORM::Factory('grupo_procedimento')->select_list_with_childrens();
     $processo = ORM::Factory('processo', $processo_id);
     $view = View::Factory('procedimentos/formulario');
     $view->set('procedimento', $procedimento);
     $view->set('advogados', $advogados);
     $view->set('tipo_procedimentos', $tipo_procedimentos);
     $view->set('processo', $processo);
     $this->template->content = $view;
 }
开发者ID:hiltongoncalves,项目名称:SAPO,代码行数:15,代码来源:procedimentos.php

示例15: array

 
<body> 
 
<!-- Content container beings here --> 
<div id="container"> 
    <!-- Header --> 
	<?php 
if ($isLoggedIn) {
    // || $menu
    ?>
    <div id="menu">
        <ul>      
			<li class='header'>Menu: </li>
            <?php 
    if ($menu) {
        echo View::Factory('global/menu', array('menu' => $menu));
    }
    ?>
        </ul>
    </div> 
    <?php 
}
?>
    <div id="header">
		<h1>IRL Events Registration</h1>
	</div>   
 
    <!-- Content Pane (Right side) --> 
    <div id="content">
	<?php 
foreach ($messages as $msg) {
开发者ID:halkeye,项目名称:ecmproject,代码行数:30,代码来源:mainTemplate.php


注:本文中的View::Factory方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。