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

Diff of /nfo/php/libs/org.netfrag.app/WebExplorer/AbstractExplorer.php

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

revision 1.24 by jonen, Wed Jul 2 11:39:16 2003 UTC revision 1.25 by udo, Sat Nov 22 18:47:49 2003 UTC
# Line 4  Line 4 
4  ##    $Id$  ##    $Id$
5  ##    -----------------------------------------------------------------------------  ##    -----------------------------------------------------------------------------
6  ##    $Log$  ##    $Log$
7    ##    Revision 1.25  2003/11/22 18:47:49  udo
8    ##    update for expand data item
9    ##
10  ##    Revision 1.24  2003/07/02 11:39:16  jonen  ##    Revision 1.24  2003/07/02 11:39:16  jonen
11  ##    fixed bugs  ##    fixed bugs
12  ##  ##
# Line 164  class WebExplorer_AbstractExplorer { Line 167  class WebExplorer_AbstractExplorer {
167      $this->set_e_state();      $this->set_e_state();
168    
169      //debug      //debug
170      //print "State: " . Dumper($this->_state) ."<br>";  //    print "State: " . Dumper($this->_state) ."<br>";
171        //print "_data_locators: " . Dumper($this->_data_locators) ."<br>";
172      $div = html_div();      $div = html_div();
173      $div->add( html_b(get_class($this)), html_hr(), "Explorer_State: " . Dumper($this->_e_state));      $div->add( html_b(get_class($this)), html_hr(), "Explorer_State: " . Dumper($this->_e_state));
174      $div->set_style('background: #adadad; border: 2px black groove; width:640px; padding:10px; margin:40px;');      $div->set_style('background: #adadad; border: 2px black groove; width:640px; padding:10px; margin:40px;');
# Line 204  class WebExplorer_AbstractExplorer { Line 208  class WebExplorer_AbstractExplorer {
208    
209    function get_page_state() {    function get_page_state() {
210      $requestTracker = mkObject("Application::Request::Tracker");      $requestTracker = mkObject("Application::Request::Tracker");
     //print Dumper($this->_state);  
211      $this->_state = $requestTracker->getPointer();      $this->_state = $requestTracker->getPointer();
212    }    }
213        
# Line 214  class WebExplorer_AbstractExplorer { Line 217  class WebExplorer_AbstractExplorer {
217      // 2. (was) get page state from request tracker      // 2. (was) get page state from request tracker
218      if ($state) {      if ($state) {
219        $this->_e_state = $state;        $this->_e_state = $state;
220    
221      } else {      } else {
222        $this->get_page_state();        $this->get_page_state();
223        $this->_e_state = $this->_state[options][options];        $this->_e_state = $this->_state[options][options];
224    
225      }      }
226      //  print "Setting Explorer state:" . Dumper($this->_e_state);       // print "Setting Explorer state:" . Dumper($this->_e_state);
227    }    }
228    
229    function set_page_state() {    function set_page_state() {
# Line 273  class WebExplorer_AbstractExplorer { Line 278  class WebExplorer_AbstractExplorer {
278            
279      // that's better ...      // that's better ...
280      $this->_load_ecom($label, $args);      $this->_load_ecom($label, $args);
281            
282            //print "getEcom_args: " .Dumper($args). "<br>";
283            
284      return $this->_ecom[$label];      return $this->_ecom[$label];
285            
286    }    }
# Line 398  class WebExplorer_AbstractExplorer { Line 406  class WebExplorer_AbstractExplorer {
406        }        }
407      }      }
408        // add page idents        // add page idents
409              
410              //print "-e-state-idents: " .Dumper($this->_e_state[idents]). "<br>";
411              
412        foreach($this->_e_state[idents] as $label => $value) {        foreach($this->_e_state[idents] as $label => $value) {
413          $hidden_items[$label] = $value;          $hidden_items[$label] = $value;
414        }        }
# Line 408  class WebExplorer_AbstractExplorer { Line 419  class WebExplorer_AbstractExplorer {
419    
420    function _prepare_component_args($label, $args = array()) {        function _prepare_component_args($label, $args = array()) {    
421      $val = $this->_e_state['ecoms'][$label];      $val = $this->_e_state['ecoms'][$label];
422    //print "val: " .Dumper($val). "<br>";
423      // pre-flight checks      // pre-flight checks
424      if (!$val['ecom_data_locator_key']) {      if (!$val['ecom_data_locator_key']) {
425        user_error("_prepare_component_args: Key 'ecom_data_locator_key' was empty, should be one of 'rpc'.");        user_error("_prepare_component_args: Key 'ecom_data_locator_key' was empty, should be one of 'rpc'.");
# Line 426  class WebExplorer_AbstractExplorer { Line 437  class WebExplorer_AbstractExplorer {
437    
438      // trace      // trace
439      //print "YAI1<br/>";      //print "YAI1<br/>";
440      //print Dumper($val);      
441            
442      $this->set_data_locator($val['ecom_data_locator_key']);      $this->set_data_locator($val['ecom_data_locator_key']);
443    
# Line 444  class WebExplorer_AbstractExplorer { Line 455  class WebExplorer_AbstractExplorer {
455      if($val['ecom_type'] == "data") {      if($val['ecom_type'] == "data") {
456        // switch abstract type        // switch abstract type
457        if($val['ecom_abstract_type'] == "list") {        if($val['ecom_abstract_type'] == "list") {
458                    // debugging
459            //print "Mode: $val[ecom_mode], type: list<br>";
460            //print "val: " .Dumper($val). "<br>";
461            
462          if($val['ecom_data_locator_key'] == "rpc") {          if($val['ecom_data_locator_key'] == "rpc") {
463            //$data_locator_meta = array( transport => 'rpc', metatype => 'data', vartype => 'objects', nodename => $val['ecom_data_ident']);            //$data_locator_meta = array( transport => 'rpc', metatype => 'data', vartype => 'objects', nodename => $val['ecom_data_ident']);
464            $data_locator_meta = array(  
465              transport => 'rpc',              $data_locator_meta = array(
466              metatype => 'data',                transport => 'rpc',
467              abstract_type => 'list',                metatype => 'data',
468              nodename => $val['ecom_data_ident'],                abstract_type => 'list',
469              list_meta => $val['ecom_data_meta']                nodename => $val['ecom_data_ident'],
470            );                list_meta => $val['ecom_data_meta']
471                );
472          } else {          } else {
473            user_error("AbstractExplorer::_prepare_component_args - Cannot build query for data_locator_key $val[ecom_data_locator_key] !");            user_error("AbstractExplorer::_prepare_component_args - Cannot build query for data_locator_key $val[ecom_data_locator_key] !");
474          }          }
# Line 469  class WebExplorer_AbstractExplorer { Line 485  class WebExplorer_AbstractExplorer {
485                                            'actionbar' => array(                                            'actionbar' => array(
486                                                'name' => "ecdfa",                                                'name' => "ecdfa",
487                                                'list' => array(                                                'list' => array(
488                                                    "View" => 'view',                                                                                                 "View" => 'view',
489                                                    "Edit" => 'edit',                                                                                                 "Edit" => 'edit',
490    
491                                                    "Delete" => 'delete',                                                    "Delete" => 'delete',
492                                                      "Expand" => 'expand',
493                                                      "Expandedit" => 'expandedit',
494                                                      
495                                                    ),                                                    ),
496                                                'selected' => 'view',                                                'selected' => 'view',
497                                                'create' => array(                                                'create' => array(
# Line 512  class WebExplorer_AbstractExplorer { Line 532  class WebExplorer_AbstractExplorer {
532          // NEW [2003-04-22]: append some more meta information to the caption          // NEW [2003-04-22]: append some more meta information to the caption
533          //$caption_addendum = ' {' . $val['ecom_data_meta'] . '}';          //$caption_addendum = ' {' . $val['ecom_data_meta'] . '}';
534          $caption_addendum = ' {' . $val['ecom_data_meta'] . ':' . $val['ecom_data_filter'] . '}';          $caption_addendum = ' {' . $val['ecom_data_meta'] . ':' . $val['ecom_data_filter'] . '}';
535                            
536          // prepare some arguments...          // prepare some arguments...
537          $args = array(          $args = array(
538                        'caption' => $val['ecom_data_ident'] . $caption_addendum,                        'caption' => $val['ecom_data_ident'] . $caption_addendum,
# Line 568  class WebExplorer_AbstractExplorer { Line 588  class WebExplorer_AbstractExplorer {
588            );            );
589          }          }
590    
591          // NEW [2003-09-26]: transparent content - argument pass-through mode
592          } elseif ($val['ecom_abstract_type'] == "transparent") {
593            
594            // You are responsible for all arguments passed through.
595            // Where are these arguments from?
596            // They are propagated transparently to this place from a new optional
597            // parameter ($args) introduced for the methods 'get_com', 'load_com'
598            // and '_prepare_component_args' (this one).
599            // This means full control over ecoms from outside.
600            
601            // TODO: maybe add some additional pre-flight checks here!?
602          
603          // croak
604        } else {        } else {
605          user_error("_prepare_component_args: Could not dispatch ecom_abstract_type='$val[ecom_abstract_type]'.");          user_error("_prepare_component_args: Could not dispatch ecom_abstract_type='$val[ecom_abstract_type]'.");
606                    
# Line 619  class WebExplorer_AbstractExplorer { Line 652  class WebExplorer_AbstractExplorer {
652    
653        // NEW [2003-04-18]: transparent nav - argument pass-through mode        // NEW [2003-04-18]: transparent nav - argument pass-through mode
654        } elseif ($val['ecom_abstract_type'] == "transparent") {        } elseif ($val['ecom_abstract_type'] == "transparent") {
           
655          // You are responsible for all arguments passed through.          // You are responsible for all arguments passed through.
656          // Where are these arguments from?          // Where are these arguments from?
657          // They are propagated transparently to this place from a new optional          // They are propagated transparently to this place from a new optional
# Line 628  class WebExplorer_AbstractExplorer { Line 660  class WebExplorer_AbstractExplorer {
660          // This means full control over ecoms from outside.          // This means full control over ecoms from outside.
661                    
662          // TODO: maybe add some additional pre-flight checks here!?          // TODO: maybe add some additional pre-flight checks here!?
         
663        // croak        // croak
664        } else {        } else {
665          user_error("_prepare_component_args: Could not dispatch ecom_abstract_type='$val[ecom_abstract_type]'.");          user_error("_prepare_component_args: Could not dispatch ecom_abstract_type='$val[ecom_abstract_type]'.");
# Line 664  class WebExplorer_AbstractExplorer { Line 695  class WebExplorer_AbstractExplorer {
695    
696      // NEW[2003-04-18]: add hidden items to args      // NEW[2003-04-18]: add hidden items to args
697      $args['hidden_elements'] = $this->_get_hidden_items($label);      $args['hidden_elements'] = $this->_get_hidden_items($label);
698            //print "args_hidden: " .Dumper($args['hidden_elements']). "<br>";
699      return $args;      return $args;
700    }    }
701    
# Line 731  class WebExplorer_AbstractExplorer { Line 762  class WebExplorer_AbstractExplorer {
762  }  }
763    
764    
 ?>  
765    ?>

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25

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