Show
Ignore:
Timestamp:
02/06/08 22:58:28 (10 months ago)
Author:
rambo
Message:

scripted whitespace normalization, see r14772

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/build/createCrud.php

    r5030 r14773  
    1111class CreateCrud extends Task { 
    1212 
    13        function __construct() 
    14        
     13    function __construct() 
     14   
    1515 
    16        
     16   
    1717 
    18        protected $returnProperty; // name of property to set to return value 
     18    protected $returnProperty; // name of property to set to return value 
    1919 
    20        /** 
    21         * The root path to where the module is stored. 
    22         */ 
    23        private $root = null; 
    24        /** 
    25         * The target directory where the packagefile should be saved. 
    26         */ 
    27        protected $target_dir = null; 
     20    /** 
     21    * The root path to where the module is stored. 
     22    */ 
     23    private $root = null; 
     24    /** 
     25    * The target directory where the packagefile should be saved. 
     26    */ 
     27    protected $target_dir = null; 
    2828 
    29        public function setRoot($str) 
    30        
    31                $this->root = $str; 
    32        
     29    public function setRoot($str) 
     30   
     31        $this->root = $str; 
     32   
    3333 
    34        /** Sets property name to set with return value of function or expression.*/ 
    35        public function setReturnProperty($r) 
    36        
    37                $this->returnProperty = $r; 
    38        
     34    /** Sets property name to set with return value of function or expression.*/ 
     35    public function setReturnProperty($r) 
     36   
     37        $this->returnProperty = $r; 
     38   
    3939    /** 
    4040     * The name of the midcom 
     
    6666 
    6767 
    68        /** 
    69         * The init method: Do init steps. 
    70         */ 
    71        public function init() 
    72        
    73            echo "Make CRUD - not war! \n"     
     68    /** 
     69    * The init method: Do init steps. 
     70    */ 
     71    public function init() 
     72   
     73        echo "Make CRUD - not war! \n"   
    7474        $this->moduleRoot = $this->root . "/" . $this->type; 
    75        
    76        /** 
    77         * The main entry point method. 
    78         */ 
    79        public function main() 
    80        
    81          
     75   
     76    /** 
     77    * The main entry point method. 
     78    */ 
     79    public function main() 
     80   
     81     
    8282        $this->moduleRoot = $this->root . "/" . $this->module; 
    8383        $schema = new SchemaReader( $this->schema, $this->type  );