diff --git a/www-api/app/Controllers/WrenchFaq.php b/www-api/app/Controllers/WrenchFaq.php index dff76574..6b4ff7a6 100644 --- a/www-api/app/Controllers/WrenchFaq.php +++ b/www-api/app/Controllers/WrenchFaq.php @@ -48,7 +48,7 @@ class WrenchFaq extends BaseController } */ - $total = 5; + $total = 2; $data = array( "status" => 100, @@ -76,6 +76,18 @@ class WrenchFaq extends BaseController "msg" => "Random gibberish text to use in web pages, site templates and in typography demos. Get rid of Lorem Ipsum forever. A tool for web designers who want to save time. ".$key, ); + $data["result_list"][] = array( + "title" => "Does WrenchBoard work on mobile devices?", + "msg" => "Random gibberish text to use in web pages, site templates and in typography demos. Get rid of Lorem Ipsum forever. A tool for web designers who want to save time. ".$key, + ); + + $data["result_list"][] = array( + "title" => "What is WrenchBoard Market ?", + "msg" => "Random gibberish text to use in web pages, site templates and in typography demos. Get rid of Lorem Ipsum forever. A tool for web designers who want to save time. ".$key, + ); + + + for ($i = 0; $i < $total; $i++) { $key = sprintf("%05d", $i); $data["result_list"][] = array( @@ -84,7 +96,10 @@ class WrenchFaq extends BaseController ); } - + $data["result_list"][] = array( + "title" => "How does WrenchBoard protect my privacy?", + "msg" => "Random gibberish text to use in web pages, site templates and in typography demos. Get rid of Lorem Ipsum forever. A tool for web designers who want to save time. ".$key, + ); return $data; }