Coder Social home page Coder Social logo

f3-hmvc's People

Contributors

elvendor avatar emanwebdev avatar kbariotis avatar minorityman avatar ptejada avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

f3-hmvc's Issues

How is this going

Hey @ptejada,

i left this repo for a while, but i tried to put it on production, scaling up a little bit and i came through some obstacles. What you say, shall we continue to work on it? Maybe talk about #2?

default route for another controllers

Can we make default index route for another controller in one modules?

Authenicate/
/controllers/
Authenticate.php
-> index()
-> authenticate()
->login()
->logout()
Landing.php
->index()
->read()

my config.ini
[routes]
GET /@module/@controller/@action = @module\controllers@controller->@action
GET /@module/@action = @module\controllers@module->@action
GET /@module = @module\controllers@module->index

it's can be done by uri
example.com/Authenticate/Landing/index
and
example.com/Authenticate/Landing/read

but it feels not clean for index function.
if i add
GET /@module/@controller = @module\controllers@controller->index
in route it's messed up with this route
GET /@module/@action = @module\controllers@module->@action

so how can we make the route for uri example.com/Authenticate/Landing (which calling index())
any direction for this case?

HMVC requests

@ptejada, how about implementing HMVC requests with help of Base::call method? It would be great reusing controllers, models, views & lang files from module1 in module2. Here is how I'm thinking of it:

/* request method in BaseController.php */

protected function request($request, $params = array())
{
    /* The logic goes here */
}

/* use it in some module controller */

$users = $this->request('admin\controllers\User->userList()', array('sortby' => 'age'));

// or

if($this->request('auth\controllers\authorize->ckeck()'))
    echo 'you\'re logged!';

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.