$theTitle=wp_title(" - ", false); if($theTitle != "") { ?>
Talks around Computer Science and Stuff
In: PHP
23 Mar 2010Thanks to Pierrick, some new minor fixes and enhancements have been added to the PHP autoloadManager.
You may find the updated version on github :
http://github.com/alfallouji/PHP-Autoload-Manager
Documentation has been updated also (Please take a look at the README file).
My name is Bashar Al-Fallouji, I work as a Enterprise Solutions Architect at Amazon Web Services.
I am particularly interested in Cloud Computing, Web applications, Open Source Development, Software Engineering, Information Architecture, Unit Testing, XP/Agile development.
On this blog, you will find mostly technical articles and thoughts around PHP, OOP, OOD, Unit Testing, etc. I am also sharing a few open source tools and scripts.
1 Response to Updates for PHP Autoload Manager
Jim Osborne
November 24th, 2011 at 11:14 am
Downloaded PHP-Autoload-Manager from github yesterday and tested in line with README file. It did not work out of the box.
Eventually got it to generate array in ‘SaveFile’ by adding ‘$this->generate();’ at end of function ‘register’
Used the following test code:
$autoloadManager = new AutoloadManager();
$autoloadManager->setSaveFile(‘autoload.php’);
$autoloadManager->addFolder(‘BridgeDesignPattern’);
$autoloadManager->register();
Is that all that is required?