summaryrefslogtreecommitdiff
path: root/modules/gallery/helpers/module.php
AgeCommit message (Collapse)Author
2009-06-29Partial fix for ticket 471 - i18n of module names in upgrader.Andy Staudacher
2009-06-23Refactor the install/upgrade code to be more flexible.Bharat Mediratta
Add xxx_installer::upgrade($version) method so that upgrade stanzas are separate from install stanzas. In the old code, to do an upgrade meant that you had to re-evolve everything from the initial install because we'd step through each version's changes. But what we really want is for the initial install to start off in the perfect initial state, and the upgrades to do the work behind the scenes. So now the install() function gets things set up properly the first time, and the upgrade() function does any work to catch you up to the latest code. See gallery_installer.php for a good example.
2009-06-09Fix a bug in set_version() where we were always forcing the value to 1. Oops!Bharat Mediratta
2009-06-09Cache the available module list in module::$available.Bharat Mediratta
2009-06-09Use a reference in available() to avoid crappy looking dereferencing.Bharat Mediratta
2009-05-28Restore calls to module::load_modules() after ↵Bharat Mediratta
install/activate/deactivate/uninstall events.
2009-05-28Load the gallery module in load_modules(), but put it at the end ofBharat Mediratta
the module list (to match its location in the cascading filesystem)
2009-05-28Force modules/gallery to be at the end of the module load path, soBharat Mediratta
that all other modules can override the core code.
2009-05-27Fix up another place where we were incorrectly referencing the gallery module.Bharat Mediratta
2009-05-27Update all references to the core application to now point to theBharat Mediratta
gallery module. This type of mass update is prone to some small bugs.
2009-05-27Restructure things so that the application is now just another module.Bharat Mediratta
Kohana makes this type of transition fairly straightforward in that all controllers/helpers/etc are still located in the cascading filesystem without any extra effort, except that I've temporarily added a hack to force modules/gallery into the module path. Rename what's left of "core" to be "application" so that it conforms more closely to the Kohana standard (basically, just application/config/config.php which is the minimal thing that you need in the application directory) There's still considerable work left to be done here.