[Free] ElaSkin 2018 - Designed for phpVMS

Hello everyone,

I’m happy to announce my new free skin for phpVMS. A skin made in ElixarCode.

 

DOWNLOAD & HOW TO INSTALLATION:  

<___base_url___>/files/file/17-free-elaskin-2018-designed-for-phpvms/?do=embed

 

DEMO:  Demo not working, because I don’t have a host. Sorry guys, I don’t have money now. I’ll try to fix.

IMPORANT: This skin was made for phpVMS 5.5.2

 

This skin is designed using the Bootstrap framework, meaning it is fully responsive and works well on all sized devices, including desktops, tablets and phones. ElaSkin is not a complete website skin, it is only a pilot center application, designed to be installed into a phpVMS installation. If you have any feature, plugin skiing or custom VA branding requests, feel free to post a reply below.

 

Enjoy!

 

Screenshots:

Dashboard page

 

Flight Report Page

 

Downloads page

AirMail

I was inspired by the  of  & of

EDIT:  I just forgot to give credit to the creators of the used modules, sorry: & by

 

EDIT 2020: I am aware that the credits on the footer are wrong, I will be fixing it. If you already have the skin, please change the footer in “app_bottom.php” to the following:

© 2020 All rights reserved. Template designed by Colorlib             CrewCenter by Carlos Eduardo | Powered by phpVMS

 

This skin was made using the ElaAdmin Template by Colorlib, due credits must be used on the footer.

UPDATE

Airmail 3 + Pilot Public Profile + Admin Notification was added to ElaSkin. To download, go back to the top topic and download it through github.

 

Do you have any idea for a new module for a future version? Let me know…

 

Thanks.

Does the php-skins.com know that you are distributing their payware work within your free skin?

You also seem to be breaking the copyright law of the admin template you are using.  The developer of ElaSkin has stated:

 

“ElaAdmin is licensed under The MIT License (MIT). Which means that you can use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the final products. But you always need to state that Colorlib is the original author of this template.”

 

Hi ,

 

Is there anything on the skin that belongs to him? Because I did not put anything on, even because I never bought anything from him.

 

LICENSE - I’ll fix when I get home.

See here:

https://i.imgur.com/qSdl62x.png

 

54 minutes ago, shakamonkey88 said:

See here:

https://i.imgur.com/qSdl62x.png

 

But this not in the skin. The mail module is Airmail 3 (simpilot) but customized with the skin.

Ah yes - it’s pulling that line from my local stack

Haha no problem

+rep

love it.

1 minute ago, MrDonutButter said:

+rep

love it.

Thank you so much.

1 Like

When i install it and then choose it in general settings i get this  https://gyazo.com/23d094c75141378c287e1aa410cafd4c

On 6/1/2018 at 5:03 AM, CarlosEduardo2409 said:

Hello everyone,

I’m happy to announce my new free skin for phpVMS. A skin made in ElixarCode.

DOWNLOAD:  https://github.com/carlosmfreitas2409/ElaSkin-2.0

DEMO:  https://elc.fsvas.co.uk/demo/elaskin/index.php (User: ELC0003 - PW: Demo123)

IMPORANT: This skin was made for phpVMS 5.5x.

 

This skin is designed using the Bootstrap framework, meaning it is fully responsive and works well on all sized devices, including desktops, tablets and phones. ElaSkin is not a complete website skin, it is only a pilot center application, designed to be installed into a phpVMS installation.

Please note that this skin is still being developed, and I hope to update it and add new features over time. You should be able to just overwrite the existing files to update it. It may also have bugs and issues. If you find, feel free to post an issue report here.

If you have any feature, plugin skiing or custom VA branding requests, feel free to post a reply below.

 

Enjoy!

Screenshots

Dashboard page

 

Flight Report Page

 

Downloads page

 

Do you want to become a developer on ElixarCode? Click here.

More info from ElixarCode .

 

I was inspired by the  of  & of

Such an amazing piece of work. Thank you for keeping it free

1 Like

3 hours ago, stifler13371 said:

When i install it and then choose it in general settings i get this  https://gyazo.com/23d094c75141378c287e1aa410cafd4c

Hi ,

 

So for fix this you need to go core/common and open StatsData.class.php

After open, you need to paste this code:

\<?php public static function TotalPilotMiles($pilotid) { &nbsp; &nbsp; &nbsp; &nbsp; $key = 'total\_miles'; &nbsp; &nbsp; &nbsp; &nbsp; $key .= '\_'.$pilotid; &nbsp; &nbsp; &nbsp; &nbsp; $total = CodonCache::read($key); &nbsp; &nbsp; &nbsp; &nbsp; if($total === false) &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $total = 0; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $sql = "SELECT \* FROM ".TABLE\_PREFIX."pireps WHERE pilotid='$pilotid' AND accepted=1"; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $results = DB::get\_results($sql); &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if($results) { foreach($results as $result) { $total += $result-\>distance; } } &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; CodonCache::write($key, $total, '15minute'); &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return $total; &nbsp; &nbsp; }

 

Sorry for not coding, nothing I’m finding the function.

24 minutes ago, LeonardIGO4036 said:

Such an amazing piece of work. Thank you for keeping it free

Thank you very much , I appreciate your work too.

1 Like

There we go! thanks man! Love the template!

1 Like

1 minute ago, stifler13371 said:

There we go! thanks man! Love the template!

Thank you so much!! It’s very good to know that.

just a question, is it only me or is the /profile/view not working or is it under development?

On 6/12/2018 at 2:17 PM, stifler13371 said:

just a question, is it only me or is the /profile/view not working or is it under development?

The profile/view was added in the latest version along with Airmail 3, you can see a preview here.

 

Login Details for preview:

User: ELC0003

PW: Demo123

On 6/11/2018 at 12:19 PM, CarlosEduardo2409 said:

Hi ,

 

So for fix this you need to go core/common and open StatsData.class.php

After open, you need to paste this code:

<?php public static function TotalPilotMiles($pilotid) {         $key = ‘total_miles’;         $key .= ‘_’.$pilotid;         $total = CodonCache::read($key);         if($total === false)         {             $total = 0;             $sql = "SELECT * FROM ".TABLE_PREFIX.“pireps WHERE pilotid=‘$pilotid’ AND accepted=1”;             $results = DB::get_results($sql);             if($results) { foreach($results as $result) { $total += $result->distance; } }             CodonCache::write($key, $total, ‘15minute’);         }                  return $total;     }

 

Sorry for not coding, nothing I’m finding the function.

 

I posted this code in my StatsData.class.php and I’m getting this error; https://gyazo.com/0de05b6ccfe4b63fd9117b6f390ea11d

17 hours ago, BuckkEntertainment said:

I posted this code in my StatsData.class.php and I’m getting this error; https://gyazo.com/0de05b6ccfe4b63fd9117b6f390ea11d

Can you pass me your entire code from StatsData.class.php?