VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

Page 5 of 8 FirstFirst 12345678 LastLast
Results 61 to 75 of 120
  1. #61
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    would it work with phoenix?

  2. #62
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,767Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Way you guys asking question that's already answered in the main post or title ?!

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

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Quote Originally Posted by JohnHearfield View Post
    would it work with phoenix?
    I don't know, does it?

  4. #64
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,767Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Quote Originally Posted by Jupos View Post
    I don't know, does it?
    Hint: `VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]`

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

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Quote Originally Posted by joopie View Post
    Hint: `VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]`
    It was sarcasm, trololol.

  6. #66
    I don't even know azaidi is offline
    MemberRank
    Apr 2010 Join Date
    the NetherlandsLocation
    2,065Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    I AM LOVING THIS CMS, CANT WAIT FOR IT TO BE RELEASED!!

    - make it hang glider compatible ;)

  7. #67
    Garry's Mod is addictive! Law is offline
    MemberRank
    Dec 2009 Join Date
    NorwayLocation
    993Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Quote Originally Posted by azaidi View Post
    I AM LOVING THIS CMS, CANT WAIT FOR IT TO BE RELEASED!!

    - make it hang glider compatible ;)
    Hanglider > uberedit. with some db changes?

  8. #68
    I don't even know azaidi is offline
    MemberRank
    Apr 2010 Join Date
    the NetherlandsLocation
    2,065Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Hang Glider is phoenix compatible? For me hang glider doesn't work with uber, only phoenix.

  9. #69
    Ultra Light Beam Makarov is offline
    MemberRank
    Apr 2010 Join Date
    GothamLocation
    3,622Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Re-opened upon request, I don't want to see any spam, insults or flaming inside the thread..

  10. #70
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,767Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    After some weeks I recoded the hole CCMS.
    Added new things and make the plugin system better.
    Also a new layout to test if it actually works (multi layout)

    Here an video to demostrate:
    CustoMS - Switching between templates! - YouTube

    Also the idea of the new way of manage the CCMS:



    It loads over the default layout to manage it directly.

    Also added triggers `for making it compatible for uber/phoenix etc`
    I can be used for onload action or when a specialy plugin function being executed.

    An snipped of the userinfo plugin with update future
    PHP Code:
    <?php

        
    namespace CustoMS\Plugin;

        use 
    CustoMS\Application;
        
        if (!
    defined('BASE'))
        {
            exit;
        }

        class 
    hh_userinfo implements iPlugin
        
    {
            private 
    $base;
            
            function 
    __Construct()
            {
                
    $this->base PLUGINS.'hh_userinfo'.DS;
            }
            
            public function 
    GetContent()
            {
                if (!isset(
    $_SESSION['hotel']))
                {
                    return 
    '';
                }
            
                
    $template = new Template($this->base.'content.html');
                
    $template->AddParam('look'$_SESSION['hotel']['user']['look']);
                
    $template->AddParam('motto'$_SESSION['hotel']['user']['motto']);
                
    $template->AddParam('credits'$_SESSION['hotel']['user']['credits']);
                
    $template->AddParam('pixels'$_SESSION['hotel']['user']['pixels']);
                
                return (string)
    $template;
            }
            
            public function 
    HandleAction() 
            { 
                if (!isset(
    $_SESSION['hotel']))
                {
                    return;
                }
            
                
    $motto $_POST['motto'];
                
    $id $_SESSION['hotel']['user']['id'];
                
                
    Application::$DB->Prepare('UPDATE `users` SET `motto` = ? WHERE `id` = ? LIMIT 1')->Params('si'$motto$id)->Execute();
                
                
    $_SESSION['hotel']['user']['motto'] = $motto;
                
                exit(
    $motto);
            }
            
            public function 
    SetSettings($data) { }
        }

    ?>
    The url to save would be: `URL/index.php?plugin=hh_userinfo` and used AJAX to save the new motto.
    Last edited by Joopie; 03-12-11 at 09:16 PM.

  11. #71
    Garry's Mod is addictive! Law is offline
    MemberRank
    Dec 2009 Join Date
    NorwayLocation
    993Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Looks nice, keep up the good work ! :)

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

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Why not a style selection from the Configuration file instead of the database? :s

  13. #73
    [̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅] leenster is offline
    MemberRank
    May 2008 Join Date
    KanaadaLocation
    992Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Quote Originally Posted by ησвяαιη View Post
    Why not a style selection from the Configuration file instead of the database? :s
    im sure he's gonna put all that in the housekeeping.....

  14. #74
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,767Posts

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Quote Originally Posted by ησвяαιη View Post
    Why not a style selection from the Configuration file instead of the database? :s
    If saw the screen below the video you would see there was an menu item `Templates`

    And what leenster sayed was right, After this is finished you don't even have to get to your phpmyadmin etc

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

    Re: VisualCCMS [PHP][CCMS][Uber, Phoenix etc compatible]

    Quote Originally Posted by leenster View Post
    im sure he's gonna put all that in the housekeeping.....
    Ah, that explains everything. :)



Page 5 of 8 FirstFirst 12345678 LastLast

Advertisement