freshJet Posted January 29, 2012 Report Share 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 Link to comment Share on other sites More sharing options...
Moderators Parkho Posted January 29, 2012 Moderators Report Share 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 Link to comment Share on other sites More sharing options...
Tom Posted January 29, 2012 Report Share 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 Link to comment Share on other sites More sharing options...
Moderators Kyle Posted January 29, 2012 Moderators Report Share Posted January 29, 2012 I wouldn't really... if your prepared to face the errors of because you changed the module name. Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted January 29, 2012 Moderators Report Share 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 Link to comment Share on other sites More sharing options...
Administrators simpilot Posted January 29, 2012 Administrators Report Share 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 Link to comment Share on other sites More sharing options...
freshJet Posted January 30, 2012 Author Report Share 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 Link to comment Share on other sites More sharing options...
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.