How to add more pages to icrew crew center

Hello guys 

 

I have installed the icrew crew center looks really good 

but I want to add some more pages like for weather map then Downloads ,fleet etc so pls tell me how to do it 

and in icrew there is no option to go to admin panel directly so if anyone can make a code for that also would be great thank you 

Can you go to your_phpvms_url/admin ? Is this what you need?

No I mean like having a admin icon in the crew center for the staff to go to the admin panel 

In general, it would be better to post your question under the skin’s thread so the developer can see it easily to address your question. I have not worked with the theme in the past but you will probably have to work with the following file:

your_phpvms_directory/lib/skins/iCrewLITE/app_sidebar.php. Starting from line 98, you will see something like this:

\<li\> \<a href="\<?php echo SITE\_URL?\>/index.php/screenshots"\> \<i class="material-icons"\>photo\_camera\</i\> \<span\>Gallery\</span\> \</a\> \</li\>

Just under this, paste this one:

\<li\> \<a href="\<?php echo SITE\_URL; ?\>/admin"\> \<i class="material-icons"\>photo\_camera\</i\> \<span\>Admin Center\</span\> \</a\> \</li\>

Of course this is something pretty basic. The above part of code can be placed wherever else you want outside of a <li></li> statement. If you aware of the basics of HTML, you probably have it.

thank you so much 

i added thx 

but will alll pilots see this icon or only staff ??

\<?php if(PilotGroups::group\_has\_perm(Auth::$usergroups, ACCESS\_ADMIN)) { ?\> \<li\> \<a href="\<?php echo SITE\_URL; ?\>/admin"\> \<i class="material-icons"\>photo\_camera\</i\> \<span\>Admin Center\</span\> \</a\> \</li\> \<?php } ?\>

with this only Pilot with Access Admin right can see the icon

okay thank you so much guys it worked !