Changeset 1649

Show
Ignore:
Timestamp:
05/19/2007 12:10:58 PM (2 years ago)
Author:
driehle
Message:

added SVN Keyword substitution

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.0/scripts/ModuleManager.class.php

    r1648 r1649  
    33/* 
    44 * This file is part of Jlog <http://jeenaparadies.net/projects/jlog> 
    5  * Please read the license information on how to use, modify or re-distribute 
    6  * this file. 
     5 * Please read the license information on how to use, modify or re-distribute this file. 
    76 *     
    87 * $Author$ 
  • branches/2.0/scripts/PluginManager.class.php

    r1648 r1649  
    33/* 
    44 * This file is part of Jlog <http://jeenaparadies.net/projects/jlog> 
    5  * Please read the license information on how to use, modify or re-distribute 
    6  * this file. 
     5 * Please read the license information on how to use, modify or re-distribute this file. 
    76 *     
    87 * $Author$ 
  • branches/2.0/scripts/interfaces/example.interface.php

    • Property svn:keywords set to Date Revision Author HeadURL
    r1640 r1649  
    11<?php 
    22 
    3 /** 
     3/* 
     4 * This file is part of Jlog <http://jeenaparadies.net/projects/jlog> 
     5 * Please read the license information on how to use, modify or re-distribute this file. 
     6 *     
     7 * $Author$ 
     8 * $Date$ 
     9 * $Revision$ 
     10 * $URL$ 
     11 *   
    412 * We want to allow several modules to implement the example 
    513 * interface, therefore we use the MULTIPLE constant (defined by 
     
    2836} 
    2937 
    30 ?> 
     38/* EOF */ 
  • branches/2.0/scripts/modules/HelloWorld.module.php

    • Property svn:keywords set to Date Revision Author HeadURL
    r1640 r1649  
    11<?php 
    22 
    3 /** 
     3/* 
     4 * This file is part of Jlog <http://jeenaparadies.net/projects/jlog> 
     5 * Please read the license information on how to use, modify or re-distribute this file. 
     6 *     
     7 * $Author$ 
     8 * $Date$ 
     9 * $Revision$ 
     10 * $URL$ 
     11 *   
    412 * JLOG_MOD_HelloWorld 
    513 * 
     
    917 * @access public 
    1018 **/ 
     19  
    1120class JLOG_MOD_HelloWorld 
    1221{ 
    1322  public function __construct() { 
    14     echo("Hello World"); 
     23    echo "This is Module " . __CLASS__ . " saying hello to the world!"; 
     24  } 
     25  public function __destruct() { 
     26    echo "This is Module " . __CLASS__ . " saying good bye to the world!"; 
    1527  } 
    1628} 
    1729 
    18 ?> 
     30 
     31/* EOF */ 
  • branches/2.0/scripts/modules/example_one.module.php

    • Property svn:keywords set to Date Revision Author HeadURL
    r1640 r1649  
    11<?php 
    22 
    3 /** 
     3/* 
     4 * This file is part of Jlog <http://jeenaparadies.net/projects/jlog> 
     5 * Please read the license information on how to use, modify or re-distribute this file. 
     6 *     
     7 * $Author$ 
     8 * $Date$ 
     9 * $Revision$ 
     10 * $URL$ 
     11 *   
    412 * JLOG_MOD_example_one 
    513 * 
     
    1422 * @access public 
    1523 **/ 
     24 
    1625class JLOG_MOD_example_one implements JLOG_IFACE_example 
    1726{ 
     
    2029  } 
    2130  public function example() { 
    22     echo "Example method of example_one module called."; 
     31    echo "Example method of module " . __CLASS__ . " called."; 
    2332  } 
    2433} 
    2534 
    26 ?> 
     35/* EOF */ 
  • branches/2.0/scripts/plugins/Example.plugin.php

    • Property svn:keywords set to Date Revision Author HeadURL
    r1645 r1649  
    11<?php 
    22 
    3 /** 
     3/* 
     4 * This file is part of Jlog <http://jeenaparadies.net/projects/jlog> 
     5 * Please read the license information on how to use, modify or re-distribute this file. 
     6 *     
     7 * $Author$ 
     8 * $Date$ 
     9 * $Revision$ 
     10 * $URL$ 
     11 *   
    412 * JLOG_PLUGIN_Example 
    513 * 
     
    917 * @access public 
    1018 **/ 
     19 
    1120class JLOG_PLUGIN_Example 
    1221{ 
     
    2534} 
    2635 
    27 ?> 
     36/* EOF */