mirror of
https://github.com/mbirth/tcl_update_db.git
synced 2024-11-10 07:16:46 +00:00
47 lines
843 B
PHP
47 lines
843 B
PHP
<?php
|
|
|
|
namespace TclUpdates;
|
|
|
|
class GotuObject
|
|
{
|
|
private $attrs = array();
|
|
|
|
public function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function __isset($attr)
|
|
{
|
|
return array_key_exists($attr, $this->attrs);
|
|
}
|
|
|
|
public function __get($attr)
|
|
{
|
|
if (!$this->__isset($attr)) {
|
|
return null;
|
|
}
|
|
return $this->attrs[$attr];
|
|
}
|
|
|
|
public function getAttrs()
|
|
{
|
|
return $this->attrs;
|
|
}
|
|
|
|
public static function fromXmlParser(XmlParser $xp)
|
|
{
|
|
if (!$xp->validateGOTU()) {
|
|
return null;
|
|
}
|
|
$g = new self();
|
|
$attrs = $xp->getAttrs();
|
|
if ($attrs['fv'] == 'AAA000') {
|
|
$attrs['fv'] = null;
|
|
}
|
|
$attrs['curef'] = strtoupper($attrs['curef']);
|
|
$g->attrs = $attrs;
|
|
return $g;
|
|
}
|
|
}
|