freshJet Posted January 29, 2012 Report Posted January 29, 2012 Is it OK to change module names? e.g the Profile folder and profile.php changed to PilotCentre and PilotCentre.php or something? Quote
Moderators Parkho Posted January 29, 2012 Moderators Report Posted January 29, 2012 Is it OK to change module names? e.g the Profile folder and profile.php changed to PilotCentre and PilotCentre.php or something? NO IT'S NOT! Unless you go inside each module folder and edit the .php and change the names there as well.I wouldn't suggest that as changing module's name may mess up other modules and files as they're all connected to each other somehow. Quote
Tom Posted January 29, 2012 Report Posted January 29, 2012 NO IT'S NOT! Unless you go inside each module folder and edit the .php and change the names there as well. Then yes, it is: that's what he explained... xD Quote
Moderators Kyle Posted January 29, 2012 Moderators Report Posted January 29, 2012 I wouldn't really... if your prepared to face the errors of because you changed the module name. Quote
Moderators Parkho Posted January 29, 2012 Moderators Report Posted January 29, 2012 Then yes, it is: that's what he explained... xD ÙŽActually I edited my answer but somehow didn't get uploaded. Quote
Administrators simpilot Posted January 29, 2012 Administrators Report Posted January 29, 2012 I am not sure why you would want to do this but if it is to change the title in the browser tab you can set a custom title in the start of the controller which will be reflected in the browser tab; <?php class Profile extends CodonModule { public $title = 'Pilot Center'; function index() { etc..... 1 Quote
freshJet Posted January 30, 2012 Author Report Posted January 30, 2012 I am not sure why you would want to do this but if it is to change the title in the browser tab you can set a custom title in the start of the controller which will be reflected in the browser tab; <?php class Profile extends CodonModule { public $title = 'Pilot Center'; function index() { etc..... Thanks, that will do Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.