50 lines
2.2 KiB
PHP
50 lines
2.2 KiB
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class faqData extends baseModel
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
public function getSiteFaq($in)
|
|
{
|
|
|
|
return array
|
|
(
|
|
[
|
|
'title' => 'What is Float App ?',
|
|
'text' => 'Float is your personal health care concierge. this app helps you to manage the intricacies of your daily and long term health activities. With Float, 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 Float ?',
|
|
'text' => 'Float 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 Float ?',
|
|
'text' => ' Float automatically keeps track of physical activities, medical status & visits , schedules ,view and cancel appointments. Float keeps your health in one place and connects you to support a healthier lifestyle'
|
|
],
|
|
[
|
|
'title' => 'How can I track with Float ?',
|
|
'text' => 'Open Float 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 Float App?',
|
|
'text' => 'Float, technology works synchronously with information you choose to share and will be encrypted and stored on a dedicated server so that Float can provide you with personalized, healthy decisions. Float 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'
|
|
]
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|