topical media & game development
[] readme course(s) preface I 1 2 II 3 4 III 5 6 7 IV 8 9 10 V 11 12 afterthought(s) appendix reference(s) example(s) resource(s) _

talk show tell print

portal-classes-core.php



  <?PHP
  
  error_reporting(E_ALL);
  
  class Core {
  
          var Actions;
          var Db;
          var Content;
          var Error;
          var Navigation;
          var PageComm;
          var User;
          var Rss;
          var Rating;
  
          function Core () {
          
                  include('core.actions.php');
                  include('core.db.php');
                  include('core.common.php');
                  include('core.content.php');
                  include('core.error.php');
                  include('core.navigation.php');
                  include('core.page-comm.php');
                  include('core.user.php');
                  include('core.rss.php');
                  include('core.rating.php');
                  include('core.search.php');
                  
                  this->Error = new Error(this); // Deze aan het begin om meteen fouten af te vangen
                  
                  this->Db = new Db(this);
                  this->Common = new Common(this);
                  this->PageComm = new PageComm(this);
                  this->Navigation = new Navigation(this);
                  this->User = new User(this);
                  this->Rss = new Rss(this);
                  this->Content         = new Content(this);
                  this->Rating = new Rating(this);
                  this->Search = new Search(this);
                  
                  // Als laatste de actions, nu kun je in alle classes functies uit andere classes gebruiken
                  this->Actions = new Actions(this);
                          
          }
  }
  
  ?>


(C) A. Eliëns 2/9/2007

You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.