Page 2 of 2 FirstFirst 12
Results 11 to 20 of 20
  1. #11
    Faint's Avatar Banned

    Join Date
    Jan 2013
    Posts
    327
    Thanked
    18
    Thanks
    133
    so pro

  2. #12
    Gibby's Avatar Gibby!

    Join Date
    Jul 2013
    Posts
    567
    Thanked
    38
    Thanks
    58
    Nice one

  3. #13
    GeorgeGFX's Avatar secret.club

    Join Date
    Nov 2010
    Country
    Posts
    15,459
    Thanked
    2,331
    Thanks
    5,080
    Looking forward to part 3

    >>> Credits to Sikk408 @ DevaintArt <<<

  4. #14
    Hangman's Avatar SuperDash™

    Join Date
    Jul 2012
    Country
    Posts
    1,297
    Thanked
    492
    Thanks
    218
    Nice

  5. #15
    Sniper's Avatar Ex-Top Crew Leader/ Intermediate PHP Coder

    Join Date
    May 2009
    Posts
    1,196
    Thanked
    55
    Thanks
    78
    Holy Shit. you've out done your self Dave.
    ty Enuma aka Izoka


    I not pro =[

  6. #16
    Gentoo's Avatar New Member

    Join Date
    Nov 2012
    Posts
    24
    Thanked
    5
    Thanks
    4
    Originally Posted by Dave View Post
    Previous part [Dave] A look inside the new GMCP for FGunZ [Part 1]

    What powers do staff members have in the GMCP? And what are the restrictions?
    This depends on the grade, an event team member should not have access to functions such as banning, adding warnings, etc.
    All staff members have the ability to search for accounts, characters and clans.

    None of the staff members can see your full IP address, see your password or change your password.

    This is an example of what an admin can see. (Still looking for decent icons for the top menu.)
    http://puu.sh/3zo1p.png

    This is an example of the account management/overview page.
    http://puu.sh/3znnb.png


    Working with hash location.
    As explained in my previous blog post, I use this plugin to take care of hash change events. (http://example.com/#login > http://example.com/#function1).
    Say I want to manage an account, I click on the username or AID (which stands for Account ID) and then the hash in the URL will change to http://localhost/#account_84357 where 84357 is the AID.

    It will then load the corresponding template and controller to show the account template and to load the account information.

    Using hash locations and jQuery makes it a bit harder to add authentication since JavaScript is client sided, but I added a function at the server side which checks if you're authenticated with every request you send.

    Code Snippets
    jQuery example of loading the information of a single character. (http://localhost/#character_92435 where 92435 is the CID > Character ID)

    [xcode=javascript]
    //
    else if(hash.indexOf("#character_") !== -1){
    var cid = hash.split("_");
    $("#characters-m").toggleClass('active');
    $.get("character", {cid: cid[1]}, function(data) {
    $('#main-container').html(data);
    }).success(function() {
    $('#body-section').fadeIn(400, function() {
    initCommon();
    initMenu();
    });
    });
    }
    //
    [/xcode]
    Due to the buggy syntax highlighter, I can only post 1 snippet.

    Next blog post will contain information regarding the launcher and its CDN.
    that should say "temporary mutes" and "temporary bans" not "temporarily" in the picture

    all wrong.

  7. #17
    Dave's Avatar 1' or 1=1--

    Join Date
    Aug 2008
    Country
    Posts
    24,014
    Thanked
    115
    Thanks
    12,958
    Originally Posted by Gentoo View Post
    that should say "temporary mutes" and "temporary bans" not "temporarily" in the picture

    all wrong.
    Sorry for not having English as primary language.

  8. The following 4 users say thank you to Dave for this useful post:

    Cake (07-22-2013), Fox (07-20-2013), Izzat (07-20-2013), Sniper (07-23-2013)

  9. #18
    Banned

    Join Date
    May 2013
    Posts
    6
    Thanked
    6
    Thanks
    0
    Looks really good.

  10. #19
    Cake's Avatar Vi veri universum vivus v

    Join Date
    Jun 2013
    Country
    Posts
    540
    Thanked
    142
    Thanks
    112
    Awesome!

  11. #20
    Jeeffy's Avatar Junior Member

    Join Date
    May 2009
    Posts
    334
    Thanked
    82
    Thanks
    13
    Looks awesome Dave

    - Just Nothing -

Page 2 of 2 FirstFirst 12

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)