Xataface  2.0alpha2
Xataface Application Framework
 All Data Structures Namespaces Files Functions Variables Groups Pages
default.php
Go to the documentation of this file.
1 <?php
2 /********************************************************************************
3  *
4  * Xataface Web Application Framework for PHP and MySQL
5  * Copyright (C) 2006 Steve Hannah <shannah@sfu.ca>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20  *
21  *===============================================================================
22  */
33  function handle(&$params){
34  import('dataface-public-api.php');
36  $query =& $app->getQuery();
37  $action =& $params['action'];
38  if ( isset( $action['mode'] ) ){
39  $query['-mode'] = $action['mode'];
40  }
41 
42  $context =array();
43  if ( @$query['-template'] ){
44  $template = $query['-template'];
45  } else if ( @$action['template'] ){
46  $template = $action['template'];
47  } else {
48  trigger_error("No template found for action '".@$action['name']."'.".Dataface_Error::printStackTrace(), E_USER_ERROR);
49  }
50  $context = array();
51  df_display($context, $template);
52 
53 
54  }
55 
56 }
57 
58 ?>