diff options
| author | Patrick Seeger <pseeger@ccwn.org> | 2012-04-13 23:11:05 +0200 |
|---|---|---|
| committer | Patrick Seeger <pseeger@ccwn.org> | 2012-04-13 23:11:05 +0200 |
| commit | 341cc4dd9c53ffbfb863e026dd58549c1082c7a7 (patch) | |
| tree | 1bbbed20313bafb9b063b6b4d894fe580d8b000f /framework/cli/views/shell/controller/view.php | |
Diffstat (limited to 'framework/cli/views/shell/controller/view.php')
| -rw-r--r-- | framework/cli/views/shell/controller/view.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/framework/cli/views/shell/controller/view.php b/framework/cli/views/shell/controller/view.php new file mode 100644 index 0000000..0bcc212 --- /dev/null +++ b/framework/cli/views/shell/controller/view.php @@ -0,0 +1,26 @@ +<?php +echo "<?php\n"; +$controller=substr($controller,0,strlen($controller)-10); +$label=ucwords(trim(strtolower(str_replace(array('-','_','.'),' ',preg_replace('/(?<![A-Z])[A-Z]/', ' \0', $controller))))); + +if($action==='index') +{ + echo "\$this->breadcrumbs=array( + '$label', +);"; +} +else +{ + $route=$controller.'/index'; + $route[0]=strtolower($route[0]); + $action=ucfirst($action); + echo "\$this->breadcrumbs=array( + '$label'=>array('$route'), + '$action', +);"; +} +?> +?> +<h1><?php echo '<?php'; ?> echo $this->id . '/' . $this->action->id; ?></h1> + +<p>You may change the content of this page by modifying the file <tt><?php echo '<?php'; ?> echo __FILE__; ?></tt>.</p> |
