Ferreteria/v0.3/class/cFieldRowDisplay: Difference between revisions
< Ferreteria | v0.3 | class
Jump to navigation
Jump to search
(Created page with "<source lang=php> →PURPOSE: data-row management for display I/O REPLACES: forms HISTORY: 2018-09-30 started: class cIORowDisplay extends cIORow { //use ftVer...") |
m (page template) |
||
Line 1: | Line 1: | ||
{{page/code/class|ferreteria}} | |||
<source lang=php> | <source lang=php> | ||
/* | /* |
Revision as of 18:31, 28 December 2018
/*
PURPOSE: data-row management for display I/O
REPLACES: forms
HISTORY:
2018-09-30 started
*/
class cIORowDisplay extends cIORow {
//use ftVerbalObject;
// ++ SETUP ++ //
public function __construct(string $sName) {
$this->SetNameString($sName);
$this->InitVars();
}
protected function InitVars() {}
// -- SETUP -- //
// ++ SETTINGS ++ //
private $sName;
protected function SetNameString(string $sName) {
$this->sName = $sName;
}
public function GetNameString() {
return $this->sName;
}
private $sKey;
protected function HasKeyString() {
return isset($this->sKey);
}
protected function SetKeyString($s) {
$this->sKey = $s;
}
protected function GetKeyString() {
return $this->sKey;
}
// -- SETTINGS -- //
}
This class may be inconsistent with the current v3 class structure. Currently only extended by one class in WorkFerret, which is not functioning as of this writing.
- file:
/data/rows/display.php
- extends: Template:L/ferreteria/class