openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 6d1ee61283ca09775e69cfebf5f686d40fddef8b
parent 7f3e4bb9a7670f4dbe55f417b95bc0b4c1c9cbe3
Author: dankert <devnull@localhost>
Date:   Sun, 19 Dec 2004 16:16:02 +0100

div. Korrekturen

Diffstat:
actionClasses/ProjectAction.class.php | 26++++++++++++++++----------
1 file changed, 16 insertions(+), 10 deletions(-)

diff --git a/actionClasses/ProjectAction.class.php b/actionClasses/ProjectAction.class.php @@ -20,7 +20,10 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ -// Revision 1.5 2004-12-15 23:25:32 dankert +// Revision 1.6 2004-12-19 15:16:02 dankert +// div. Korrekturen +// +// Revision 1.5 2004/12/15 23:25:32 dankert // Anpassung an Session-Funktionen // // Revision 1.4 2004/11/10 22:40:14 dankert @@ -89,12 +92,14 @@ class ProjectAction extends Action function add() { // Projekt hinzufuegen - $this->project->name = $this->getRequestVar('name'); - $this->project->add(); - - $this->setTemplateVar('tree_refresh',true); + if ( $this->getRequestVar('name') != '' ) + { + $this->project = new Project(); + $this->project->name = $this->getRequestVar('name'); + $this->project->add(); + } - $this->callSubAction('edit'); + $this->callSubAction('listing'); } @@ -105,11 +110,12 @@ class ProjectAction extends Action // Projekte ermitteln $list = array(); - foreach( $this->project->getAll() as $id=>$name ) + foreach( Project::getAll() as $id=>$name ) { - $list[$id] = array(); - $list[$id]['url' ] = Html::url('main','project',$id); - $list[$id]['name'] = $name; + $list[$id] = array(); + $list[$id]['url' ] = Html::url('main' ,'project',$id); + $list[$id]['use_url' ] = Html::url('index','project',$id); + $list[$id]['name' ] = $name; } $this->setTemplateVar('el',$list);