Ferreteria/v0.3/class/cFieldRow: Difference between revisions
< Ferreteria | v0.3 | class
Jump to navigation
Jump to search
(page template) |
m (redundant arg) |
||
Line 1: | Line 1: | ||
{{page/code/class|ferreteria | {{page/code/class|ferreteria}} | ||
<source lang=php> | <source lang=php> | ||
abstract class cIORow { | abstract class cIORow { |
Revision as of 18:36, 28 December 2018
abstract class cIORow {
use tFieldClasses;
public function SetFields(array $ar) {
public function ClearFields() {
protected function GetFields() {
protected function SetField(cIOField $oField) {
protected function ZapField($sKey) {
protected function RetrieveField($sKey) {
// PURPOSE: RetrieveField() but throw exception if not found
public function GetExistingField($sKey) {
// PURPOSE: sets an individual value
public function SetValue($sKey, $val) {
public function GetValue($sKey) {
public function GetValueNz($sKey,$def=NULL) {
// PURPOSE: sets individual values from an array
public function SetValues(array $ar) {
public function FieldIsSet($sKey) { // retrieves field object, checks to see if it has a value set
protected function MakeField($sKey) {
public function GetNativePortals() {
return new cPortalRow_native($this);
}
public function GetStoragePortals() {
return new cPortalRow_storage($this);
}
// TO BE ADAPTED
/*----
RETURNS: array[control name] = rendering of control
*/
public function RenderControls($doEdit) {
public function DumpFields() {
}
- file:
/data/rows/base.php
- extended by:
- Template:L/ferreteria/class extends cIORow -- extended by WorkFerret; may be obsolete
- (A) Template:L/ferreteria/class extends cIORow
- (A) Template:L/ferreteria/class extends cIORow