Xataface  2.0alpha2
Xataface Application Framework
 All Data Structures Namespaces Files Functions Variables Groups Pages
portal.php
Go to the documentation of this file.
1 <?php
6  function &buildWidget(&$record, &$field, &$form, $formFieldName, $new=false){
7  $widget =& $field['widget'];
8  $factory =& Dataface_FormTool::factory();
9  $widget['record'] =& $record;
10  $el =& $factory->addElement('portal', $formFieldName, $widget['label']);
11  $el->init_portal($widget);
12  return $el;
13  }
14 }