/[cvs]/nfo/php/libs/org.netfrag.app/WebExplorer/Module/DataItem.php
ViewVC logotype

Diff of /nfo/php/libs/org.netfrag.app/WebExplorer/Module/DataItem.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by jonen, Fri Apr 4 00:50:44 2003 UTC revision 1.6 by joko, Tue May 13 14:55:52 2003 UTC
# Line 4  Line 4 
4  ##    $Id$  ##    $Id$
5  ##    -----------------------------------------------------------------------------  ##    -----------------------------------------------------------------------------
6  ##    $Log$  ##    $Log$
7    ##    Revision 1.6  2003/05/13 14:55:52  joko
8    ##    parameters for MetaBox
9    ##
10    ##    Revision 1.5  2003/05/10 18:27:17  jonen
11    ##    + supports now mode 'create' via widget 'CreateDataItem'
12    ##
13    ##    Revision 1.4  2003/04/11 00:52:19  joko
14    ##    minor update: prepared for being one level more abstract by using $negotiation_options
15    ##
16    ##    Revision 1.3  2003/04/10 06:27:36  joko
17    ##    ++ _args[mode] == 'delete'  =>  new FlexibleDataItem
18    ##
19    ##    Revision 1.2  2003/04/06 01:33:45  jonen
20    ##    + purged code
21    ##
22  ##    Revision 1.1  2003/04/04 00:50:44  jonen  ##    Revision 1.1  2003/04/04 00:50:44  jonen
23  ##    + initial commit  ##    + initial commit
24  ##  ##
# Line 14  Line 29 
29  ##    -----------------------------------------------------------------------------  ##    -----------------------------------------------------------------------------
30  */  */
31    
32    
33    loadModule('WebExplorer::Module::AbstractGUIModule');
34    
35  class WebExplorer_Module_DataItem extends WebExplorer_Module_AbstractGUIModule {  class WebExplorer_Module_DataItem extends WebExplorer_Module_AbstractGUIModule {
36    
37    
38    function set_gui_object() {    function set_gui_object() {
39        
40        // NEW [2003-04-22]: inject metadata about chooser (item|list|tree) into _args[options]
41        // Please visit WebExplorer::Module::DataTree - there is a similar chooser at the top!!!
42        // TODO: abstract this out into some reusable, generic component sometimes (SimpleChooser?)
43        $this->_args[options][links] = array(
44          'list' => array(
45            array( name => 'item', url => url::view_as('item') ),
46            array( name => 'tree', url => url::view_as('tree', array( ecdid => $_GET[ecdm] )) ),
47            //array( name => 'reset filter', url => url::filter('tree') ),
48          ),
49          'meta' => array(
50            'selected' => $this->_args[options][data_locator_meta][abstract_type]
51          )
52        );
53        
54        // debug
55        //print Dumper($this->_args);
56        
57      if($this->_args['mode'] == 'view') {      if($this->_args['mode'] == 'view') {
58        $this->_gui_object = new DataItem($this->_args['caption'], $this->_args['options']);        $this->_gui_object = new DataItem($this->_args['caption'], $this->_args['options']);
59      }      }
60      elseif($this->_args['mode'] == 'edit') {      elseif($this->_args['mode'] == 'edit') {
61       $this->_gui_object = new EditDataItem($this->_args['caption'], $this->_args['options'] );       $this->_gui_object = new EditDataItem($this->_args['caption'], $this->_args['options'] );
62        }
63        elseif($this->_args['mode'] == 'delete') {
64         // 'EditDataItem' already has an infrastructure to do "Confirm"ations,
65         // so we just try to use it here to let the user confirm the new "delete"-action.
66        
67         // TODO:
68         // Try to implement this aspect of the required infrastructure independent of
69         // an 'EditDataItem'. Maybe it should become a 'GenericNegotiation'-ecom-component?!
70         // Aim: Abstract way of handling 'Confirm', 'Cancel' actions on arbitrary "question"???
71         $negotiation_options = array(
72         );
73        
74         $this->_gui_object = new FlexibleNegotiation($this->_args['caption'], $this->_args['options'], $negotiation_options );
75      }      }
   }  
76        
77  /*      elseif($this->_args['mode'] == 'create') {
78    function view_DataItem() {       $this->_gui_object = new CreateDataItem($this->_args['caption'], $this->_args['options'] );
       $initial_locator = php::mkComponent( 'DataSource::Locator', array( adapter_type => 'phpHtmlLib' ) );  
       $proxy = php::mkComponent('DataSource::Generic', $initial_locator, $this->_args['options']['data_locator_meta']);  
       $source = $proxy->get_adapter();  
       $source->do_query();  
       $result = $source->_result;  
     //print Dumper($source->_result);  
   
     $table = new InfoTable($this->_args['caption'], $width="100%", "center");  
     if (is_array($result)) {  
       foreach($result as $key => $value) {  
         if(!$value) { $value = " "; }  
         $table->add_row(span_font10bold($key), $value);  
       }  
79      }      }
     // build submit form  
     $container = container(  
                     form_open($this->_args['caption'], $_SERVER['PHP_SELF'], 'POST'),  
                     form_submit('ecitem', "edit"),  
                     form_close()  
                     );  
     //$table->add_row(div_build_spacergif_tag(), $container);  
     $table->add_row(" ", $container);  
     return $table;  
80    }    }
81  */  
     
82    
83  }  }
84    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.6

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed