| 13 |
* $Id$ |
* $Id$ |
| 14 |
* |
* |
| 15 |
* $Log$ |
* $Log$ |
| 16 |
|
* Revision 1.4 2003/03/10 22:58:45 joko |
| 17 |
|
* + fixed metadata for phpDocumentor |
| 18 |
|
* |
| 19 |
* Revision 1.3 2003/03/05 23:16:46 joko |
* Revision 1.3 2003/03/05 23:16:46 joko |
| 20 |
* updated docu - phpDocumentor is very strict about its 'blocks'... |
* updated docu - phpDocumentor is very strict about its 'blocks'... |
| 21 |
* |
* |
| 42 |
* This tries to mimic a very small subset of the |
* This tries to mimic a very small subset of the |
| 43 |
* functionality of CPAN's Exporter. |
* functionality of CPAN's Exporter. |
| 44 |
* |
* |
| 45 |
|
* <pre> |
| 46 |
* x export_symbol |
* x export_symbol |
| 47 |
* x export_symbols |
* x export_symbols |
| 48 |
* |
* |
|
* <pre> |
|
| 49 |
* Synopsis: |
* Synopsis: |
| 50 |
* <code> |
* <code> |
| 51 |
* define('EXPORT_OK', 'loadModule mkInstance' ); |
* define('EXPORT_OK', 'loadModule mkInstance' ); |
| 80 |
* |
* |
| 81 |
* @link http://search.cpan.org/author/JHI/perl-5.8.0/lib/Exporter.pm |
* @link http://search.cpan.org/author/JHI/perl-5.8.0/lib/Exporter.pm |
| 82 |
* |
* |
| 83 |
* @todo |
* @todo (x) look at http://www.php.net/manual/en/function.method-exists.php |
| 84 |
* <pre> |
* @todo (x) $bool_exists = (in_array(strtolower($methodName), get_class_methods($className))); |
| 85 |
* x look at http://www.php.net/manual/en/function.method-exists.php |
* @todo (x) -> implemented in php::class_has_method |
|
* x $bool_exists = (in_array(strtolower($methodName), get_class_methods($className))); |
|
|
* x -> implemented in php::class_has_method |
|
|
* </pre> |
|
| 86 |
* |
* |
| 87 |
*/ |
*/ |
| 88 |
class Exporter { |
class Exporter { |