48 lines
2.3 KiB
PHP
48 lines
2.3 KiB
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class myfitPricing extends Model
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
public function getSitePricing($in)
|
|
{
|
|
|
|
return array
|
|
(
|
|
[
|
|
'title' => 'This is the title 1 from backend',
|
|
'text' => 'Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.'
|
|
],
|
|
[
|
|
'title' => 'This is the title 2',
|
|
'text' => 'Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.'
|
|
],
|
|
[
|
|
'title' => 'This is the title 3',
|
|
'text' => 'Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.'
|
|
],
|
|
[
|
|
'title' => 'This is the title 4',
|
|
'text' => 'Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.'
|
|
],
|
|
[
|
|
'title' => 'This is the title 5',
|
|
'text' => 'Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.'
|
|
],
|
|
[
|
|
'title' => 'This is the title 6',
|
|
'text' => 'Random Text Generator is a web application which provides true random text which you can use in your documents or web designs. How does it work? First we took many books available on project Gutenberg and stored their contents in a database.'
|
|
]
|
|
);
|
|
|
|
}
|
|
|
|
} |