Xataface  2.0alpha2
Xataface Application Framework
 All Data Structures Namespaces Files Functions Variables Groups Pages
WidgetHandler.php
Go to the documentation of this file.
1 <?php
39 interface WidgetHandler {
40 
41 
83  public function buildWidget(
84  Dataface_Record $record,
85  array &$field,
86  HTML_QuickForm $form,
87  $formFieldName,
88  $new=false);
89 
90 
110  public function pullField(
111  Dataface_Record $record,
112  array &$field,
113  HTML_QuickForm $form,
114  $formFieldName,
115  $new=false);
116 
117 
135  public function pullValue(
136  Dataface_Record $record,
137  array &$field,
138  HTML_QuickForm $form,
139  $formFieldName,
140  $new=false);
141 
142 
161  public function pushField(
162  Dataface_Record $record,
163  array &$field,
164  HTML_QuickForm $form,
165  $formFieldName,
166  $new=false);
167 
168 
190  public function pushField(
191  Dataface_Record $record,
192  array &$field,
193  HTML_QuickForm $form,
194  $formFieldName,
195  $new=false);
196 
197 }