GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

Page 1 of 8 12345678 LastLast
Results 1 to 15 of 106
  1. #1
    "(still lacks brains)" NoBrain is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    2,658Posts

    GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    GammaMVC

    Information
    GammaMVC is a content management system written in an Model-view-controller pattern. It offers support for Phoenix Emulator and potentially available for it to support any Emulator available, whether past, present or future.

    Why choose MVC?
    We chose an MVC pattern because it offers a wide range of advantages, including speed and clean URLs.

    What themes are going to be available?
    There are going to be many themes available to GammaMVC, including ones that you have made. The ones that are currently in development are as followed;


    • Bootstrap 2 (successor to the RevCMS theme by nobrain)
    • Habbo theme (Latest)
    • Mabbo
    • PhoenixPHP
    • Gamma (custom theme)


    If you would like to make themes for GammaMVC, please contact nobrain@null.net via E-mail.

    What database type do you offer?
    We currently support PDO, MySQLi and MySQL. The default will be PDO because it is the best out of the 3.

    Is there a place where I can check updates on GammaMVC?
    We currently have a repository where you check on all the updates on GammaMVC. Both links are the same.

    https://github.com/Monsma/GammaMVC
    https://github.com/ash-kratos/GammaMVC

    Who are the developers?
    Monsma - PHP code
    nobrain - Themes and minor input on the PHP code


  2. #2
    Account Upgraded | Title Enabled! RoyZ is offline
    MemberRank
    Jul 2011 Join Date
    BelgiumLocation
    316Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Finally some real work , Gl :)

  3. #3
    "(still lacks brains)" NoBrain is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    2,658Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Quote Originally Posted by RoyZ View Post
    Finally some real work , Gl :)
    From both Me and Monsma, thanks! :)

  4. #4
    Enthusiast Joshuwar is offline
    MemberRank
    Oct 2012 Join Date
    45Posts

    GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Why are you doing three separate variables in the PDO class?:
    public $Link;
    public $Query;
    public $Parameters;

    Why not just do:
    public $Link, $Query, $Parameters;

  5. #5
    Valued Member Monsma is offline
    MemberRank
    Dec 2011 Join Date
    The NetherlandsLocation
    126Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Quote Originally Posted by Joshuwar View Post
    Why are you doing three separate variables in the PDO class?:
    public $Link;
    public $Query;
    public $Parameters;

    Why not just do:
    public $Link, $Query, $Parameters;
    Whats your point? it is working if you do
    public $Link, $Query, $Parameters;

    or
    public $Link;
    public $Query;
    public $Parameters;

    its just the same things

  6. #6
    karLi Ganja Co. El Jamie is offline
    MemberRank
    Nov 2007 Join Date
    Boob Island, BILocation
    2,796Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Stop arguing in a thread for fuck sake. You do it enough on Skype, don't do it here :S

  7. #7
    Iron like a Lion in Zion! vLife is online now
    Super ModRank
    Apr 2009 Join Date
    The BahamasLocation
    3,785Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Quote Originally Posted by El Jamie View Post
    Stop arguing in a thread for fuck sake. You do it enough on Skype, don't do it here :S
    ^
    Continue with your garbage and I will be glad to hand out infractions, consider yourself warned.

  8. #8
    Valued Member Monsma is offline
    MemberRank
    Dec 2011 Join Date
    The NetherlandsLocation
    126Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    thanks for the cleaning-up guys

  9. #9
    "(still lacks brains)" NoBrain is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    2,658Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    As I said before, until the Moderators deleted it; There will be more updates tomorrow and/or the day after (depending on how ill I am). The update(s) will be about Monsma's coding and my Bootstrap 2 theme.

  10. #10
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,473Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Very nice, good luck. I hope Ash makes good designs and Monsma completes it :D

  11. #11
    Valued Member Monsma is offline
    MemberRank
    Dec 2011 Join Date
    The NetherlandsLocation
    126Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Quote Originally Posted by Quackster View Post
    Very nice, good luck. I hope Ash makes good designs and Monsma completes it :D
    Thanks we try to do our best!

  12. #12
    prjRev.com Kryptos is offline
    MemberRank
    Feb 2010 Join Date
    Planet EarthLocation
    579Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Wish you good luck. Here's some help:

    • Avoid using global - Read Normally it means you have some design issues.
    • Don't use switch cases for pages, that's soo RevCMS 1.0 and well.. It sucks, don't have to be a genius.
    • At the moment it's not compatible with multiple databases, curious to see how you're doing it.
    • Why are you including all your Models ( What you have there are drivers/engines, not Models! ) when you're only using one?
    • What is the purpose of the Habbo.php library? It looks like a normal user class... Remember it's MVC!


    Hope you don't take it the wrong way, just want to help! Check this out!

  13. #13
    Valued Member Monsma is offline
    MemberRank
    Dec 2011 Join Date
    The NetherlandsLocation
    126Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Quote Originally Posted by Kryptos View Post
    Wish you good luck. Here's some help:

    • Avoid using global - Read Normally it means you have some design issues.
    • Don't use switch cases for pages, that's soo RevCMS 1.0 and well.. It sucks, don't have to be a genius.
    • At the moment it's not compatible with multiple databases, curious to see how you're doing it.
    • Why are you including all your Models ( What you have there are drivers/engines, not Models! ) when you're only using one?
    • What is the purpose of the Habbo.php library? It looks like a normal user class... Remember it's MVC!


    Hope you don't take it the wrong way, just want to help! Check this out!
    Thank you for the usefull tips, the habbo.php include the library is a user class.
    and i have add new updates to my github with a exemplate how i go handle the emulators
    and i have use already 1 tip that one of the database drivers thanks!
    Last edited by Monsma; 18-03-13 at 08:28 AM.

  14. #14
    Alpha Member Emily is offline
    MemberRank
    Oct 2012 Join Date
    The NetherlandsLocation
    2,408Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Goodluck to both of you, I like multi-style CMS :)

  15. #15
    "(still lacks brains)" NoBrain is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    2,658Posts

    Re: GammaMVC [Model-view-controller, PHP, Multi-Db, Multi-Themed]

    Quote Originally Posted by Tha View Post
    Goodluck to both of you, I like multi-style CMS :)
    Thank you very much :)

    Bootstrap 2 updates:

    Index:



    Developer modal:



    Signin or Signup modal:




    Credits have been given, as you can see in the 2nd image.



Page 1 of 8 12345678 LastLast

Advertisement