本文整理汇总了PHP中Column::loadFromXML方法的典型用法代码示例。如果您正苦于以下问题:PHP Column::loadFromXML方法的具体用法?PHP Column::loadFromXML怎么用?PHP Column::loadFromXML使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Column
的用法示例。
在下文中一共展示了Column::loadFromXML方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addColumn
/**
* A utility function to create a new column from attrib and add it to this
* table.
*
* @param $coldata xml attributes or Column class for the column to add
* @return the added column
*/
public function addColumn($data)
{
if ($data instanceof Column) {
$col = $data;
$col->setTable($this);
if ($col->isInheritance()) {
$this->inheritanceColumn = $col;
}
if (isset($this->columnsByName[$col->getName()])) {
throw new EngineException('Duplicate column declared: ' . $col->getName());
}
$this->columnList[] = $col;
$this->columnsByName[$col->getName()] = $col;
$this->columnsByLowercaseName[strtolower($col->getName())] = $col;
$this->columnsByPhpName[$col->getPhpName()] = $col;
$col->setPosition(count($this->columnList));
$this->needsTransactionInPostgres |= $col->requiresTransactionInPostgres();
return $col;
} else {
$col = new Column();
$col->setTable($this);
$col->loadFromXML($data);
return $this->addColumn($col);
// call self w/ different param
}
}
示例2: addColumn
/**
* A utility function to create a new column from attrib and add it to this
* table.
*
* @param $coldata xml attributes or Column class for the column to add
* @return the added column
*/
public function addColumn($data)
{
if ($data instanceof Column) {
$col = $data;
$col->setTable($this);
if ($col->isInheritance()) {
$this->inheritanceColumn = $col;
}
$this->columnList[] = $col;
$this->columnsByName[$col->getName()] = $col;
$this->columnsByPhpName[$col->getPhpName()] = $col;
$col->setPosition(count($this->columnList));
$this->needsTransactionInPostgres |= $col->requiresTransactionInPostgres();
return $col;
} else {
$col = new Column();
$col->setTable($this);
$col->loadFromXML($data);
return $this->addColumn($col);
// call self w/ different param
}
}