本文整理汇总了PHP中Phalcon\Mvc\Model::getSource方法的典型用法代码示例。如果您正苦于以下问题:PHP Model::getSource方法的具体用法?PHP Model::getSource怎么用?PHP Model::getSource使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Phalcon\Mvc\Model
的用法示例。
在下文中一共展示了Model::getSource方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: shiftLeftRight
/**
* @param int $key
* @param int $delta
*/
private function shiftLeftRight($key, $delta)
{
$owner = $this->getOwner();
foreach (array($this->leftAttribute, $this->rightAttribute) as $attribute) {
$condition = $attribute . '>=' . $key;
if ($this->hasManyRoots) {
$condition .= ' AND ' . $this->rootAttribute . '=' . $owner->{$this->rootAttribute};
}
$query = sprintf('UPDATE %s SET %s=%s+%d WHERE %s', $this->owner->getSource(), $attribute, $attribute, $delta, $condition);
$this->owner->getWriteConnection()->execute($query);
}
}
示例2: getSource
public function getSource()
{
//Phalcon can't find camelcase table names
return lcfirst(Text::camelize(parent::getSource()));
}
示例3: getSource
/**
* Get db table full name
* @return string
*/
public function getSource()
{
if (!$this->tableName) {
$this->tableName = parent::getSource();
}
return $this->getPrefix() . $this->tableName;
}