[Openfirst-cvscommit] base/includes Module.php,1.7,1.8
Brought to you by:
xtimg
From: Astronouth7303 <ast...@us...> - 2005-08-22 15:10:27
|
Update of /cvsroot/openfirst/base/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3964/includes Modified Files: Module.php Log Message: Added comment about iterating through modules. Index: Module.php =================================================================== RCS file: /cvsroot/openfirst/base/includes/Module.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Module.php 17 Aug 2005 17:27:59 -0000 1.7 --- Module.php 22 Aug 2005 15:10:19 -0000 1.8 *************** *** 29,32 **** --- 29,37 ---- require_once('dbase.php'); + /** + * The correct way to enumerate through the modules is to get the list of + * them via $ogModuleManager->getDirs() and then call + * $ogModuleManager->getModuleFromDir() for each element of that. + */ /** Provides functions for managing modules. |