[ Index ]
 

Code source de eGroupWare 1.2.106-2

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/phpgwapi/inc/savant2/Savant2/ -> Compiler.php (source)

   1  <?php
   2  
   3  /**
   4  * 
   5  * Abstract Savant2_Compiler class.
   6  * 
   7  * You have to extend this class for it to be useful; e.g., "class
   8  * Savant2_Plugin_example extends Savant2_Plugin".
   9  * 
  10  * $Id: Compiler.php 18360 2005-05-26 19:38:09Z mipmip $
  11  * 
  12  * @author Paul M. Jones <pmjones@ciaweb.net>
  13  * 
  14  * @package Savant2
  15  * 
  16  * @license http://www.gnu.org/copyleft/lesser.html LGPL
  17  * 
  18  * This program is free software; you can redistribute it and/or modify
  19  * it under the terms of the GNU Lesser General Public License as
  20  * published by the Free Software Foundation; either version 2.1 of the
  21  * License, or (at your option) any later version.
  22  *
  23  * This program is distributed in the hope that it will be useful, but
  24  * WITHOUT ANY WARRANTY; without even the implied warranty of
  25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  26  * Lesser General Public License for more details.
  27  *
  28  */
  29  
  30  class Savant2_Compiler {
  31      
  32      /**
  33      * 
  34      * Reference to the "parent" Savant object.
  35      *
  36      */
  37      
  38      var $Savant = null;
  39      
  40      
  41      /**
  42      * 
  43      * Constructor.
  44      * 
  45      * @access public
  46      * 
  47      */
  48      
  49  	function Savant2_Compiler($conf = array())
  50      {
  51          settype($conf, 'array');
  52          foreach ($conf as $key => $val) {
  53              $this->$key = $val;
  54          }
  55      }
  56      
  57      
  58      /**
  59      * 
  60      * Stub method for extended behaviors.
  61      *
  62      * @access public
  63      * 
  64      * @return void
  65      *
  66      */
  67      
  68  	function compile($tpl)
  69      {
  70      }
  71  }
  72  ?>


Généré le : Sun Feb 25 17:20:01 2007 par Balluche grâce à PHPXref 0.7