48 lines
2.2 KiB
PHP
48 lines
2.2 KiB
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class myfitFaqData extends Model
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
public function getSiteFaq($in)
|
|
{
|
|
|
|
return array
|
|
(
|
|
[
|
|
'title' => 'What is myFit App ?',
|
|
'text' => 'myFit is your personal health care concierge. this app helps you to manage the intricacies of your daily and long term health activities. With myFit, your health record is yours at all point, you decide your provider access as needed from time to time.'
|
|
],
|
|
[
|
|
'title' => 'How Can I manage my health plan with myFit ?',
|
|
'text' => 'myFit learns and help You to keep track of all aspects of your health - physical, mental and emotional. It bestow your unique lifestyle, needs and comprehensive well-being'
|
|
],
|
|
[
|
|
'title' => 'What can I track with myFit ?',
|
|
'text' => ' myFit automatically keeps track of physical activities, medical status & visits , schedules ,view and cancel appointments. Myfit keeps your health in one place and connects you to support a healthier lifestyle'
|
|
],
|
|
[
|
|
'title' => 'How can I track with myFit ?',
|
|
'text' => 'Open myFit app , add information about your health, goals and save.Under each category of your choosing, select Activity, set a goal , see your progress.'
|
|
],
|
|
[
|
|
'title' => 'How secure is myFit App?',
|
|
'text' => 'myFit, technology works synchronously with information you choose to share and will be encrypted and stored on a dedicated server so that MyFit can provide you with personalized, healthy decisions. MyFit is built to keep your data secure and protect your privacy. Your data is encrypted and you are always in control of your information.'
|
|
],
|
|
[
|
|
'title' => ' What kind of device do I need?',
|
|
'text' => 'All you need is iPhone or Android device to enjoy all personalized metrics for personal use. Instant free download from apple and play store'
|
|
]
|
|
);
|
|
|
|
}
|
|
|
|
} |