Welcome Guest, Not a member yet? Register   Sign In
FreakAuth light and Matchbox
#16

[eluser]bugboy[/eluser]
Ok after looking at this and having a chat with a couple of people on here.

I think the best solution for this is as follows.

FAL is great i mean really great and powerful in what it can do.

What i have done is make FAL part of my core development not move it into modules, it becomes to messy and complicated.
With that done and moded to work with Matchbox(moving a few files around and such). I then was able to create each module as its own system knowing that i had FAL in place to secure my modules if needed. This enabled me to not have to make sure the FAL module was there.

each module within its controllers has two file as an eample.



Code:
module folder structure

  controllers
    about.php <!-- front controller ->
    console.php <!-- admin controller ->
  models
  views
    front <!-- front views folder ->
    console <!-- console views folder ->


The console being the admin area for that module.

I edited the FAL content View to use this instead

Code:
<?= isset($page) ? $this->load->module_view($module, $page) : null ?>

and within each module i made sure that i had

Code:
$data['module'] = whatever

it does mean that if using views inside my module for my system i can drop this

Code:
$data['page']= $this->config->item('FAL_template_dir').'folder/view';

to just depending on whats needed

Code:
$data['page']= 'front/view';
$data['page']= 'console/view';

If that makes no sense then sorry but i though i'd put my two pence worth in. see if it helps anyone


Messages In This Thread
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 01:32 AM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 01:36 AM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 01:44 AM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 01:57 AM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 01:59 AM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 02:13 AM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 02:36 AM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 07:24 PM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 08:26 PM
FreakAuth light and Matchbox - by El Forum - 12-06-2007, 09:59 PM
FreakAuth light and Matchbox - by El Forum - 12-07-2007, 07:04 PM
FreakAuth light and Matchbox - by El Forum - 12-13-2007, 06:23 AM
FreakAuth light and Matchbox - by El Forum - 12-13-2007, 02:59 PM
FreakAuth light and Matchbox - by El Forum - 12-13-2007, 04:14 PM
FreakAuth light and Matchbox - by El Forum - 02-12-2008, 06:31 PM
FreakAuth light and Matchbox - by El Forum - 02-21-2008, 02:25 PM
FreakAuth light and Matchbox - by El Forum - 03-02-2009, 04:18 AM



Theme © iAndrew 2016 - Forum software by © MyBB