Okay… This is getting into the more advanced PHP coding and may require the extra work, I have heard of extra scripts to get this to work but have had no luck.
I think I sub-posted this before and couldnt get an answer for it, but got the answer to my main question, so now I need this…
I have folders, each containing different things, and these are for the Admin Control Panel.
So here’s how the folders are laid out:
applications/core/modules
applications/core/tools
applications/core/data
Now, these have sub folders for each things, and I am using this for very good organization.
The main problem, going to something like this in the acp:
http://www.site.com/admin/applications/core/modules/random.php
can look very gross. So, thought, how can I make this better. My first idea was to pack everything into a giant includes() system and use it all in index.php
But then I though it would be so much harder to disguise it all as index.php
So browsing around, I found other options. Many of you may be specialized with “Invision Power Board” the notorious forum software. Looking at there URLs, they all look like they were submitted by form, even though, they weren’t. This looks good for organizing and this is what I want to do. The only thing is, how they can do something like:
http://www.site.com/index.php?app=core&module=global§ion=register
for like a register link. Of course, they have the same kinda layout, I changed mine a little to be a bit cleaner like theirs.
But how would I do this, Have looked at coding and inside that file, I see this:
$this->form_code = $this->html->form_code = 'module=tools&section=licensekey';
But $this, form_code, etc are not listed in there, so I would have to go browsing through all the files over and over to understand how they didn’t this, can anyone help me with even a simple method to doing this?
I know this is a bit advanced, and a long post, but I wanted to be kinda clear on everything…
Thanks in advanced! -Improvizionz