Jump to content

in2tech

Members
  • Posts

    292
  • Joined

  • Last visited

  • Days Won

    5

in2tech last won the day on January 23 2020

in2tech had the most liked content!

5 Followers

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

in2tech's Achievements

Newbie

Newbie (1/14)

  • Dedicated Rare
  • Week One Done
  • One Month Later
  • One Year In Rare

Recent Badges

52

Reputation

  1. Good Morning
    We are looking for a template for PHPVMS V7 and I am interested in your template, can you share it?
    Thanks

  2. I am just on a test v7 server right now. So when you make an airline Inactive by Unchecking the Active box. Would it effect members that chose that airline in Registration? Could there be any problems there? Just checking since Most of us are just testing still.
  3. Anyone tried this yet, to see if it works? It's been awhile since I have this stuff, might have to relearn
  4. Look in the v7 Support area under Addon's and Downloads. There is an ACAR's by a member here and I think the developer of phpVMS v7 is working on one too, and won't be available for awhile. The other I think is already in the the testing phase. Of course with everthing still in development it could be awhile, but I think it is a good idea to test it as according to the developer the basics should not change much, I think, only he knows for sure But I think I am right about the basic part of it. I hope. Best of luck!
  5. Was just wondering if Nabeel updated his hosting yet to run PHP 7.1, 7.2, etc... Anyone know?
  6. Just wanted to say very nice work from the screen shots, keep it up! Looks amazing!
  7. Thanks to all the moderators and administrators that take care of this site. Much appreciated!
  8. Customized File New PIREP form page: Nothing fancy, just a little more compact. I like it! It's also the Edit PIREP form: A few minor alignment issues I need to fix.
  9. Alright so after Nabeel ( developer of phpVMS 7 and original phpVMS ) explained this to me, and I am sure he will chime in here when he has time. The way I understand it is that the text in his original default v7 theme and in v7 that will be showing to users is a Laravel library I think it is called and instead of entering code like I did below in my nav.blade.php file below ( chopped up code not complete ). Well not really code but TEXT for the navigation names: <ul class="nav topnav"> @if(Auth::check()) <li class="dropdown active"> <a href="{{ route('frontend.dashboard.index') }}">Dashboard</a> </li> @endif <li><a href="{{ route('frontend.livemap.index') }}">Live Map</a></li> <li><a href="{{ route('frontend.pilots.index') }}">Pilots</a></li> You would instead include the Laravel library language code so that it will display for different languages, say like Spanish. How it does this I have no clue! But this is what you would copy over from the default nav.blade.php file. There is also a language file and can't remember where it is, with a bunch more options. <ul class="nav topnav"> @if(Auth::check()) <li class="dropdown active"> <a href="{{ route('frontend.dashboard.index') }}">@lang('common.dashboard')</a> </li> @endif <li><a href="{{ route('frontend.livemap.index') }}">@lang('common.livemap')</a></li> <li><a href="{{ route('frontend.pilots.index') }}">{{ trans_choice('common.pilot', 2) }}</a></li> I thought this would mess up my text and so forth from my template, but it has not yet, and should not. I also can't remember the {{ trans_choice('common.pilot', 2) }} code meaning cause I looked it up a long time ago.If I remember correctly the number 2, makes choices this instance between the singular PILOT and the plural PILOTS! I am still learning! Hope this help's someone. I almost sure you DON"T have to use the language files, it's up to you.
  10. Although I am still going through the Laravel 5.7 Tutorials, I don't grasp these instead of just test yet? But I did find the master file, just trying to understand why these instead of text. Is it like a CSS file one reference takes care of them all? Or something like that?
  11. Apparently too simple for my brain to comprehend Thank's to both of you!
×
×
  • Create New...