Monday, February 13, 2012

8:43 AM
1

iPFaces is a flexible solution for easy development of form-oriented network mobile applications. With the iPFaces solution, mobile devices are able to render content received from a server using their native UI components.


It uses thin presentation client (must be installed on device) to render application content. Using iPFaces it is possible to build an application where users can use their device's specific component behavior and additional device features, such as location service and additional graphic components of the device (lists, pickers etc.).

Architecture

The solution is based on the use of a thin presentation client installed on the device and an application/web server which generates the content for clients. The client and the server communicate with each other using the network.

The idea is similar to the web browser - web server model. The client sends HTTP(S) requests to the server and receives iPFaces specific HTTP(S) responses, where the content is an XML representation of the application's form which is be rendered on client-side together with the form's data.



How to start?


Development of a complex iPFaces application is really simple because the simulation mode can be used. This mode is capable of transfering XML content to a HTML page, which can be displayed in a web browser. It is a helpful tool for developers who can see their iPFaces application in the browser window and they do not need a real iPhone device for main development.


Developers can build and deploy an application to the application server and the browser will show them the GUI which is almost the same as a screen in an iPhone application. There is a difference in the GPS elements. A GPS field is working in a browser only as text field that can be filled by user and GPS coordinates will be submitted. The GPS field is hidden on mobile devices, because the location of the device is detected without interaction with the user.



Hello World Example


To use PHP iPFaces library, just include "ipfaces-php-lib-1.1.php" file, construct the component tree and call "render()" method on the component form.



  require "path/to/ipfaces/library/ipfaces-php-lib-1.1.php";
  $ipf_form = new IPFForm();
  $ipf_screen = $ipf_form->addScreen("screen", "Hello World Application");
  $ipf_screen->addLabel("label", "Hello World!");
  $ipf_form->render();




More complex example

The following example is not complete. It only illustrates how easy it is to define forms for iPhone using iPFaces. For complete examples please visit http://www.ipfaces.org

Example: Use of location service

To obtain a user location from a mobile device use the IPFGsm class. Upon submission of a form, the location data will be sent as a parameter with the selected name (gpsElement in this example).

require "../lib/ipfaces-php-lib-1.1.php";
require "citydatabase.php";

$form = new IPFForm();
$screen = $form->addScreen("How Far Is It?");
$screen->addLabel("You can find distance between your position and selected city.");
$parser = new CityDatabase();

if (isset($_COOKIE["city"])){
$value = $_COOKIE["city"];
}

$select = new IPFSelect("citySelect", $value, "Distance to" ,"list" );
$options = array();

for($row = 0; $row < count($parser->data); $row++){
$options[] = new IPFOption($row, $parser->data[$row]["City"]);
}

$select->Icon = "../img/distcalc.png";
$select->addOptions($options);
$screen->addItem($select);

$screen->addGps("gpsElement");

$screen->addButton("backButton", "1", "Examples", "../index.php", IPFButton::BUTTON_TYPE_LINK, IPFButton::BUTTON_POSITION_BACK);
$screen->addButton("submitButton", "0", "Calculate" , "distance.php", IPFButton::BUTTON_TYPE_SUBMIT, IPFButton::BUTTON_POSITION_FORWARD);

$form->render();





1 comments:

poojaa2015 said...

Wonderful blog & good post.Its really helpful for me, awaiting for more new post. Keep Blogging!

Mobile Application Developer