Changeset 18 for ez_publish/ezipb/trunk/classes/ezipb.php
- Timestamp:
- 09/04/07 20:27:23 (16 months ago)
- Files:
-
- 1 modified
-
ez_publish/ezipb/trunk/classes/ezipb.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ez_publish/ezipb/trunk/classes/ezipb.php
r9 r18 39 39 40 40 41 /* !42 * Construct or41 /** 42 * Constructeur 43 43 */ 44 44 function __construct() { … … 83 83 //echo "<pre>" . print_r( $this->ipsclass->DB->obj['cached_queries'] ) . "</pre>"; 84 84 } 85 } 85 86 87 /** 88 * Permet d'instancier l'objet ezipb. 89 * 90 * @return object ezipb 91 */ 92 static function instance() { 93 94 $impl =& $GLOBALS["ezipbGlobalInstance"]; 95 96 $class = strtolower( get_class( $impl ) ); 97 if ( $class != "ezipb" ) 98 $impl = new ezipb(); 99 100 return $impl; 101 } 102 103 } // EOC 86 104 87 105 ?>
