Jump to content

Nabeel

Administrators
  • Posts

    8151
  • Joined

  • Last visited

  • Days Won

    39

Posts posted by Nabeel

  1. I won't use it just yet in the offical, once the text and localization is finalized, then we can step through and do it, but I saw in your screenshot before you did the admin panel. Looks great. However (you're gonna kill me!), in this next build all of the templates have changed for the admin panel (I changed around how it works). After this build, it won't change much, and then we can go from there.

    For the front-end, if you can zip up those templates and add them into the Addon forum for whoever needs them, that'll be excellent.

    Thanks!

  2. Thanks for the ideas guys, and welcome aboard!

    I'm looking into exams - it would be somewhat complicated to integrate into ranks, and not all VAs will use them. But perhaps they can be tied into a separate system for ratings, where a certain rating can only be achieved with a certain rank. However, this won't be coming for a while, I'm still considering it.

    Welcome messages, emails for ranks, etc, I like those ideas! I will add them to my list when I revise it this week.

    As for downloads, I'm working on something. A few things are under wraps still  ;) I have a few surprises up my sleeve.

    Statistics, those are also coming. I'm revamping alot of backend code in the admin panel, since it's a bit of a mess. Once those are done, alot of improvements to stats, etc are coming into the picture, along with financial information. I'm prototyping that information.

    Also, a simple Weather system that shows METAR/TAF of the departure/destination airports + alternative airports in route.

    Those are included if you look at a schedule page.

    Updates will be spaced out more now, since work is picking up and I get less time nowadays to code. But rest assured, I haven't forgotten. :)

    Also, if you guys can sign your names, that would be great. I like to know everyone at least by name.

  3. Total profit? I'm building those functions in, including cost per flight, passengers per flight, cost, you know, basic financials.

    Those numbers, not yet, I'm gonna be shortening that to the hundreth place

  4. under the include 'core/codon.config.php';

    Template::Set('extrafields', RegistrationData::GetCustomFields());
    Template::Set('allairlines', OperationsData::GetAllAirlines(true));
    Template::Set('allhubs', OperationsData::GetAllHubs());
    Template::Set('countries', Countries::getAllCountries());
    

    Then

    Template::Show('registration_mainform.tpl');
    

  5. Yup, the names have to be the same, it checks the local skin folder first to see if it's there, otherwise it'll go to the default.

    I've seen some people make a custom .php page with stuff, but the problem is, it'll forward back to the one within the system.

    You can include the registration form like:

    Template::Show('registration_mainform.tpl') (I think that's what it's called... lol), instead of re-doing the entire form, so

    <head>
    <title><?php echo $title ?></title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <?php
    include 'core/codon.config.php';
       Template::Show('core_htmlhead.tpl');
    ?>
    </head>
    <?php
       Template::Show('core_htmlreq.tpl');
    ?>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> 
    ....
    
    <?php
    Template::Show('registration_mainform.tpl');
    ?>
    ...
    

    Maybe that helps? I need my coffee

×
×
  • Create New...