PageRenderTime 52ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/views/scaffolding/crud/actions/view.php

http://github.com/fuel/oil
PHP | 6 lines | 4 code | 2 blank | 0 comment | 0 complexity | 327911f39d7e10266fc2e4640b0a5a4f MD5 | raw file
  1. is_null($id) and Response::redirect('<?php echo $uri ?>');
  2. $data['<?php echo $singular_name ?>'] = Model_<?php echo $model_name ?>::find_by_pk($id);
  3. $this->template->title = "<?php echo ucfirst($singular_name) ?>";
  4. $this->template->content = View::forge('<?php echo $view_path; ?>/view', $data);