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

Page 6 of 8 FirstFirst 12345678 LastLast
Results 76 to 90 of 106
  1. #76
    Ultra Light Beam Makarov is offline
    MemberRank
    Apr 2010 Join Date
    GothamLocation
    3,622Posts

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

    The information from v26 is way different from r63+

    Do you understand that?

  2. #77
    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 Makarov View Post
    The information from v26 is way different from r63+

    Do you understand that?
    Just wait Just wait...

  3. #78
    "(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]

    Live Installer design creation: Ended

    P.S.
    I will pause it if I have to check Facebook.
    Last edited by NoBrain; 22-03-13 at 12:56 AM.

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

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

    We are very busy with our emulator handlers
    Gamma MVC will therefore go multi-version support.

    Okay here are 2 emulator handlers into force:
    Phoenix: https://github.com/Monsma/GammaMVC/b...rs/Phoenix.php
    UberEmu: https://github.com/Monsma/GammaMVC/b...dlers/Uber.php

  5. #80
    "(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]

    I have decided to do a completely custom Housekeeping, starting on it now.

    Update on all themes:
    • Bootstrap - no updates just yet
    • Installer - can't figure out what design to do for it
    • Housekeeping - working on it now, got a mental image of what I want
    • Habbo - information below
    • Gamma - not yet started


    I have had word that someone is making an Illumina theme for GammaMVC, I just been sent a screenshot and it looks pretty awesome.



    Update on the Habbo theme recode:
    Still no images, apart from background and logo. :D


    Last edited by NoBrain; 22-03-13 at 06:23 PM.

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

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

    Quote Originally Posted by ησвяαιη View Post
    I have decided to do a completely custom Housekeeping, starting on it now.

    Update on all themes:
    • Bootstrap - no updates just yet
    • Installer - can't figure out what design to do for it
    • Housekeeping - working on it now, got a mental image of what I want
    • Habbo - information below
    • Gamma - not yet started


    I have had word that someone is making an Illumina theme for GammaMVC, I just been sent a screenshot and it looks pretty awesome.



    Update on the Habbo theme recode:
    Still no images, apart from background and logo. :D


    Any join.me for the housekeeping?:)

  7. #82
    "(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 Joshuwar View Post
    Any join.me for the housekeeping?:)
    https://join.me/886-821-552 (ended)

    First page of Installation is done.



    PHP coding Join.me, hosted by Monsma: https://join.me/938-548-853
    Last edited by NoBrain; 22-03-13 at 08:02 PM.

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

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

    Check the updates for yourself im tired as hell.
    tomorrow more updates weekend:D
    https://github.com/Monsma/GammaMVC/

  9. #84
    Member Finley7 is offline
    MemberRank
    Feb 2013 Join Date
    In tha NedzLocation
    61Posts

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

    Update about Illumina style. Going to do the dropdown now.


    Another update 23-3-2013
    Going to move the search box. asap.
    Last edited by Finley7; 23-03-13 at 03:09 AM.

  10. #85
    "(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]

    Screenshot by Lightshot - Bring it on Nevada.

  11. #86
    hoi ik ben cool Merijn is offline
    MemberRank
    Dec 2009 Join Date
    The NetherlandsLocation
    492Posts

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

    Quote Originally Posted by ησвяαιη View Post
    Screenshot by Lightshot - Bring it on Nevada.
    Calm down. We will :)

    PHP Code:
    private function InitializeConfig()
            {
                foreach(
    glob(ROOT.'Configure'.DS.'*.php') as $Configure)
                {
                    require_once 
    $Configure;
                }

                
    self::$Config ToObject($Config);
            }

            private function 
    InitializeLibrary()
            {
                foreach(
    glob(ROOT.'Application'.DS.'Library'.DS.'*.php') as $Library)
                {    
                    require_once 
    $Library;
                }

                
    self::$Router = new Router();

                
    self::$Controller = new Controller();
            }

            private function 
    InitializeUtilities()
            {
                foreach(
    glob(ROOT.'Application'.DS.'Utilities'.DS.'*.php') as $Utilities)
                {
                    require_once 
    $Utilities;
                }
            } 
    Why not doing this in one function? This is the code in Nevada

    PHP Code:
        self::$getLibs = array('management''libs''model');
          
           foreach(
    self::$getLibs as $row)
           {    
               
    /**
               * Does every directory exists? If it doesnt
               * just give a die to the system.
               */
               
               
    ((is_dir(BASE '/app/' $row)) ?: die('The directory <b> ' $row ' </b> does not exists.'));
               
               foreach(
    glob(BASE '/app/'.$row.'/*.php') as $includedFile)
               {
                   require 
    $includedFile;
               }
                
           } 

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

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

    Github has be updated: https://github.com/Monsma/GammaMVC

  13. #88
    "(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]

    Sorry for no updates recent, been having motivation issues and couldn't find my anti depressants so I had to drive 2 hours to get some more :(

  14. #89
    "(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]

    Sorry for the lack of progress lately, both me and Monsma are ill so things are going pretty slowly.

  15. #90
    Me > You DaCheat is offline
    LegendRank
    May 2004 Join Date
    Minneapolis, MNLocation
    7,270Posts

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

    Leaving this note to let you all know I will be watching this thread from now on.

    I will NOT be giving warnings nor infractions, rather 7-30 day bans to anyone causing trouble. You were all given a verbal warning by mods already and didn't listen. So what happens from now on will be up to you.



Page 6 of 8 FirstFirst 12345678 LastLast

Advertisement