Jump to content

MaciejO

Members
  • Posts

    94
  • Joined

  • Last visited

Everything posted by MaciejO

  1. Hi, 1. Because phpVMS is based on MVC (Model-View-Controller) structure you will need your handling code to be located inside modules (controllers) and classes (models). Where your template (view) files go to template folder. Just type "MVC" in Google and you should find hundreds of top notch articles about MVC as it is that popular. Best convention I have ever heared of for MVC is "Keep Models Fat and Controllers Thin". 2. Possibly it is a small mistake, or a larger problem within your code. If you send me your code via private message I am more than happy to help you out. Thanks, Mac...
  2. Hi, I currently have a lot of free time and this will be the case until the end of January. I am ready to take on some projects for a very competitive price. Unfortunley my website is down, possibly until the end of year, therfore I am providing my portfolio at the alternative site. My services vary... I offer services like installation, maintanence, module design & implementation, custom template design & implementation and many more. If it's not on the list, ask! I'm here to answer your questions. I also offer two ready to use modules. Dispatch module(20GBP) and phpVMS comments widget(10GBP) or 25GBP for a bundle. To get more info about them, contact me! My DeviantART Portfolio To contact me you can message me on: here my email: olbi123@gmail.com skype: olbi111 Hope to speak to some of you soon! Maciej.
  3. Woops! Sorry about that! It's working now. Maciej.
  4. Hi guys! If anyone is interested from 16th April 2014 at 00:01 GMT until 25th april 2014 at 23:59 GMT I will be offering this dispatch module for only 14.99GBP. Also between these dates you can get comments module posted here: http://forum.phpvms.net/topic/20655-phpvms-comments-module/ for only 7.99GBP. You can also get them both together for only 16.99GBP (best deal)! All that until 25th April! To get them, speak to me through my website http://www.maciejolborski.net/home/contactme or email: email@maciejolborski.net. Maciej.
  5. Hi guys! If anyone is interested from 16th April 2014 at 00:01 GMT until 25th april 2014 at 23:59 GMT I will be offering this product for only 7.99GBP. Also between these dates you can get dispatch module posted here: http://forum.phpvms.net/topic/6666-web-services/ for only 14.99GBP. You can also get them both together for only 16.99GBP (best deal)! All that until 25th April! To get them, speak to me through my website http://www.maciejolborski.net/home/contactme or email: email@maciejolborski.net. Maciej.
  6. Hi. I'm glad you like it! To modify map size you will need to change map width and height values in local.config.php. That should do it: Config::Set('MAP_WIDTH', '645px'); Config::Set('MAP_HEIGHT', '480px'); To get a working fleet page you will need additional module for example: http://forum.phpvms.net/topic/1522-fleet-table/ Hope that helps, Maciej.
  7. Hello guys! Sorry for delay, I am extending the 7.99GBP offer until 25th January 2014 23:59GMT. System now work's without problems and demo can be checked out at http://maciejolborsk...demo/index.php/. Please login using details provided to see two diffrent examples in the menu (News using SimpleNews from Tom with Comments module attached and Single page example) Screenshot: If you are interested in any of those offers please contact me through a private message or drop me an email to email(at)maciejolborski.net. Alternatively you can use contact form here: http://www.maciejolb.../home/contactme. Maciej! Thanks Man!
  8. Hi! 1) You could possibly achieve desired effect through SimPilot's Real Schedule module. 2) You would have to add new rows in schedules table called altnIcao and altnAptRoute and then modify schedules module within admin area and schedules data within core to allow adding data into this columns through admin panel. Then it would be matter of displaying it. Though I have no idea what impact could this have as I never tried modyfing phpvms tables directly. Other way would be creating another database table with name of something like phpvms_alternates and having id, scheduleId, altnIcao, altnAptRoute and then creating an admin module to handle this data with reference to scheduleId from your phpvms_schedules table. Hope that helps, Mac!
  9. Hello fellow pilots! I am happy to announce that today, on Thursday, 16th of January 2014 I will be releasing payware Comments module. It just need's tidying up and some basic style to be applied that's why it wont be available until evening. This module will allow you to add Comments section easily anywhere on your page, for example in your news module or a single page of a HUB. Just anywhere. The process of adding the module will be as easy as including one line of code that will generate the rest for you! Module allows for a comment to be made and two levels of comment replies are available. Comments can be deleted and modified. Pagination of comments come in by default and comments per pages can be modified easily by changing one line of the code. Here is a preview of the module (More pictures to come in when it is released and styled): I will be offering this module for 7.99GBP until 22nd of January 2014 at 23:59GMT. After that the price will be 10GBP. I will be also offering a bundle of this module and my dispatch module (more info on new release cooming soon!) for 23.99GBP which means that you will save 6.01GBP if you go for the bundle. If you are interested in any of those offers please contact me through a private message or drop me an email to email(at)maciejolborski.net Hope you like it, Maciej
  10. Hi! Sorry I've been away on christmas holiday and not been checking forum for a while but. itrobb. <aside>, <section> and <article> are the propper HTML5 tags and are now supported by most modern browsers. http://www.w3schools...ew_elements.asp. Taran. In theory you could create an aside with id right and place it in html like this: <aside id="right"> <section class="box"> <h1>Title 1</h1> </section> <section class="box"> <h1>Title 2</h1> </section> </aside> Then in your CSS you would have to add something like that: #right { position: relative!important; width: 260px!important; float: right!important; } And then take away 260px(aside container) + 25px(right margin) from #contentFrontPage width so it should be: #contentFrontPage { width: 360px; margin-left: 25px; margin-right: 25px; } I didn't test it but it should do the trick, if it doesn't contact me through pm and I'll be more than happy to help you out! Maciej.
  11. Hi there, Something like that? Maciej.
  12. Try loading JQuery library before you load slimscroll. On the site without the phpvms it's loaded in this order: <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> <script type="text/javascript" src="http://www.execusim.com/lib/skins/execusim2014/js/jquery.slimscroll.min.js"></script> But on your phpvms site you load it in this order: <script type="text/javascript" src="http://execusim.com/lib/skins/execusim2014/js/jquery.slimscroll.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> Mac...
  13. You can use some of the functions in StatsData.class.php to display stats based upon the variable named airline_code. http://forum.phpvms.net/topic/4592-airlines-stats/ Mac...
  14. Follow standard HTML pattern for tables: <table> //table start <thead> //header <tr> //row <th></th> //header column <th></th> //header column </tr> //row end </thead> //header end <tbody> //body start <tr> //row <td></td> //body column <td></td> //body column </tr> //row end </tbody> //body end </table> //table end Mac...
  15. I think he means the template files for ACARS which are originally in the pilot centre. Mac...
  16. Hi there Bendik! I will update template files shortly to make sure that careers is not shown in menu when you are logged in but for now you can change it by yourself in core_navigation.tpl Replace line 11 in core_navigation.tpl with: <?php if(!Auth::LoggedIn()) { ?> <li class="level-1"><a href="<?php echo url('registration'); ?>">Careers</a></li> <?php } ?> To make sure that ACARS map shows up correctly on the screen you have to change its height and width in local.config.php on line 63/64 like that: Config::Set('MAP_WIDTH', '640px'); Config::Set('MAP_HEIGHT', '480px'); Glad you like it! Mac...
  17. I would but I dont want to make it in the exactly same pattern as Metro -> Modern UI. It was designed other way round because the only workable way that goes well with Full Modern UI Schemat are tiles which are not something I want to do for this exact skin. Open Sans is good! Hehe Mac...
  18. Cheers for good word, I'll play around and see what I can get but I already used ModernUI quite a lot and I thought it needs a little bit of graphical expansion. I've putten @ for copyright just as a first thing when I started doing the template and then completly forgot about it! ~Thanks! Mac...
  19. Sure thing! I will be also marking premium pages and linking them to the menu one by one when they will be ready on host1 site at my hosting. Here you are: http://maciejolborski.net/hosts/1/index.php/ Regds, Mac...
  20. Hello guys, I am very happy to announce the release of my first free skin for the phpVMS community. You can find it in downloads section of my website named as pureHTML5 template. Features: CSS3 Drop-Down Menu OpenSans Google Font Sleek & Modern Design Custom Table Styling Upgrade to Premium option in the future! Tom's Simple News integration (Module required unless you will delete it callback function from frontpage_main.tpl) Terms & Conditions: You have to leave 'Designed by MaciejO' along with the link to my site in the footer at the bottom of each page. Rest of the conditions come under the http://creativecommo...s/by-nc-sa/3.0/ license. Installation: Extract the pureHTML5_blue.rar archive. Upload pureHTML5_blue folder to ROOT/lib/skin In admin panel -> general settings change the skin to pureHTML5_blue That's it! Premium This template will be available in premium version too within few weeks time. The premium features will likely be to: Multi-level animated drop down menu Diffrent colour variants Animated picture slider Custom skinning for some of the modules and default phpvms templates Pilot Center Accordion or/and Tabs integration to be used around the website. I am planning on releasing premium version of this template for price of 10GBP. I am hoping that this skin will be a great starter to many new VA's out there. Use PM, contact form on my website or this topic to gain support if you need it! Regards, Mac...
  21. Negative, I actually shall make some quick Starting Guide for users as much people dont understand how operations will work within the aeroclub. Maciej.
  22. Dont worry, there will be a lot of events happening in this aeroclub, but first we need to get head round the system! Maciej.
  23. Aeroclub Opening Event will take place on Saturday 10th of August 2013 kicking off at 18z! Details: http://www.scovirtualaeroclub.co.uk/index.php/events/details/1
  24. Hello, our forum is now online, all members who have registred with us before will have to register there manually. All new members will be automatically registred with the forum. Web support category can be used even by quests to let them report any problems with the website or to let them suggest features that they would like to see in our community before they join. http://www.forum.scovirtualaeroclub.co.uk/
×
×
  • Create New...