/[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.22 by joko, Tue May 13 14:50:27 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
11    ##    fixed bugs
12    ##
13    ##    Revision 1.23  2003/06/06 11:57:20  joko
14    ##    minor update: cosmetic changes
15    ##
16  ##    Revision 1.22  2003/05/13 14:50:27  joko  ##    Revision 1.22  2003/05/13 14:50:27  joko
17  ##    HACKed compatibility for config-type data sources  ##    HACKed compatibility for config-type data sources
18  ##    + function get_data_filter  ##    + function get_data_filter
# Line 158  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 198  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 208  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 267  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 345  class WebExplorer_AbstractExplorer { Line 359  class WebExplorer_AbstractExplorer {
359        if($ecom_state['ecom_abstract_type'] == "list") {        if($ecom_state['ecom_abstract_type'] == "list") {
360          $hidden_items = array(          $hidden_items = array(
361                                    'ecl' => $label,                                    'ecl' => $label,
362                                    'ecat' => "item",                                    'ecat' => "list",
363                                    'ecmod' => "view",                                    'ecmod' => "view",
364                                    'ecdm' => $ecom_state['ecom_data_ident'],                                    'ecdid' => $ecom_state['ecom_data_ident'],
365                                    );                                    );
366        }        }
367        elseif($ecom_state['ecom_abstract_type'] == "item") {        elseif($ecom_state['ecom_abstract_type'] == "item") {
# Line 392  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 402  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 420  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 438  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( transport => 'rpc', metatype => 'data', abstract_type => 'list', nodename => $val['ecom_data_ident'], list_meta => $val['ecom_data_meta']);  
465                $data_locator_meta = array(
466                  transport => 'rpc',
467                  metatype => 'data',
468                  abstract_type => 'list',
469                  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 457  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 500  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 530  class WebExplorer_AbstractExplorer { Line 562  class WebExplorer_AbstractExplorer {
562             $args['options']['caption'] = $val['ecom_data_ident'];             $args['options']['caption'] = $val['ecom_data_ident'];
563             $args['options']['data_locator_meta']['action'] = 'create';             $args['options']['data_locator_meta']['action'] = 'create';
564             print "debug 'create': " . Dumper($val);             print "debug 'create': " . Dumper($val);
565             }
566    
567             if($val['ecom_data_meta_x']) {             if($val['ecom_data_meta_x']) {
568               unset($args['options']['data_locator_meta']['nodename']);               unset($args['options']['data_locator_meta']['nodename']);
569               $args['options']['data_locator_meta']['parent'][guid] = $val['ecom_data_meta'];               $args['options']['data_locator_meta']['parent'][guid] = $val['ecom_data_meta'];
570               $args['options']['data_locator_meta']['parent'][nodename] = $val['ecom_data_meta_x'];               $args['options']['data_locator_meta']['parent'][nodename] = $val['ecom_data_meta_x'];
571             }             }
          }  
572                    
573        // switch abstract type        // switch abstract type
574        } elseif ($val['ecom_abstract_type'] == "tree") {        } elseif ($val['ecom_abstract_type'] == "tree") {
# Line 555  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 606  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 615  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 651  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 718  class WebExplorer_AbstractExplorer { Line 762  class WebExplorer_AbstractExplorer {
762  }  }
763    
764    
 ?>  
765    ?>

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

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