本文整理汇总了PHP中Grid::isLoaded方法的典型用法代码示例。如果您正苦于以下问题:PHP Grid::isLoaded方法的具体用法?PHP Grid::isLoaded怎么用?PHP Grid::isLoaded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Grid
的用法示例。
在下文中一共展示了Grid::isLoaded方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: writeGrid
public function writeGrid(Grid $grid)
{
if (!$grid->isLoaded()) {
$this->Torpor()->throwException($this->Torpor()->containerKeyName($grid) . ' grid not loaded (can only cache loaded grids)');
}
return $this->_memcache->set($this->makeGridKey($grid), $grid->dumpArray(true), $this->getCompression() ? MEMCACHE_COMPRESSED : null, $this->getTTL());
}
示例2: scanForInsertId
protected function scanForInsertId(Grid $grid)
{
if (!$grid->isLoaded()) {
$primaryKey = $grid->primaryKey();
$foundKeyColumn = false;
if (is_array($primaryKey)) {
foreach ($primaryKey as $keyColumn) {
if (!$keyColumn->isGeneratedOnPublish() || $keyColumn->hasData()) {
continue;
}
$foundKeyColumn = $keyColumn;
break;
}
} else {
if ($primaryKey->isGeneratedOnPublish() && !$primaryKey->hasData()) {
$foundKeyColumn = $primaryKey;
}
}
if ($foundKeyColumn) {
$result = $this->query('SELECT SCOPE_IDENTITY() AS [LAST_INSERT_ID]');
if (!$result || mssql_num_rows($result) != 1) {
$this->throwException('Attempt to fetch last insert id value failed: ' . $this->error());
}
$dataRow = $this->fetch_row($result);
$foundKeyColumn->setData(array_shift($dataRow));
}
}
}
示例3: writeGrid
public function writeGrid(Grid $grid)
{
if (!$grid->isLoaded()) {
$this->Torpor()->throwException($this->Torpor()->containerKeyName($grid) . ' grid not loaded (can only cache loaded grids)');
}
if (!isset($_SESSION[$this->Torpor()->containerKeyName($grid)])) {
$_SESSION[$this->Torpor()->containerKeyName($grid)] = array();
}
$_SESSION[$this->Torpor()->containerKeyName($grid)][$this->makeGridKey($grid)] = $grid->dumpArray(true);
}
示例4: scanForInsertId
protected function scanForInsertId(Grid $grid, $sequence, $next = true)
{
if (!$grid->isLoaded()) {
$primaryKey = $grid->primaryKey();
$foundKeyColumn = false;
if (is_array($primaryKey)) {
foreach ($primaryKey as $keyColumn) {
if (!$keyColumn->isGeneratedOnPublish() || $keyColumn->hasData()) {
continue;
}
$foundKeyColumn = $keyColumn;
break;
}
} else {
if ($primaryKey->isGeneratedOnPublish() && !$primaryKey->hasData()) {
$foundKeyColumn = $primaryKey;
}
}
if ($foundKeyColumn) {
$result = $this->query('SELECT ' . $this->escapeDataName($sequence) . '.' . $this->escapeDataName($next ? 'NEXTVAL' : 'CURRVAL') . ' ' . $this->asColumnOperator . ' ' . $this->escapeDataNameAlias('LAST_INSERT_ID') . ' FROM ' . $this->escapeDataName('DUAL'));
if (!is_resource($result)) {
$this->throwException('Attempt to fetch last insert id value failed: ' . $this->error());
}
$dataRow = $this->fetch_row($result);
$foundKeyColumn->setData(array_shift($dataRow));
}
}
}
示例5: LoadFromCriteria
public function LoadFromCriteria(Grid $grid, CriteriaBase $criteria, $refresh = false)
{
if (!$grid->isLoaded() || $refresh) {
$sql = $this->CriteriaToSQL($grid, $criteria);
$this->LoadGridFromQuery($grid, $sql, 1);
}
return $grid->isLoaded();
}
示例6: scanForInsertId
protected function scanForInsertId(Grid $grid)
{
if (!$grid->isLoaded()) {
$primaryKey = $grid->primaryKey();
$foundKeyColumn = false;
if (is_array($primaryKey)) {
foreach ($primaryKey as $keyColumn) {
if (!$keyColumn->isGeneratedOnPublish() || $keyColumn->hasData()) {
continue;
}
$foundKeyColumn = $keyColumn;
break;
}
} else {
if ($primaryKey->isGeneratedOnPublish() && !$primaryKey->hasData()) {
$foundKeyColumn = $primaryKey;
}
}
if ($foundKeyColumn && ($lastInsertId = sqlite_last_insert_rowid($this->getConnection()))) {
$foundKeyColumn->setData($lastInsertId);
}
}
}
示例7: scanForInsertId
protected function scanForInsertId(Grid $grid)
{
if (!$grid->isLoaded()) {
$primaryKey = $grid->primaryKey();
$foundKeyColumn = false;
if (is_array($primaryKey)) {
foreach ($primaryKey as $keyColumn) {
if (!$keyColumn->isGeneratedOnPublish() || $keyColumn->hasData()) {
continue;
}
$foundKeyColumn = $keyColumn;
break;
}
} else {
if ($primaryKey instanceof Column && $primaryKey->isGeneratedOnPublish() && !$primaryKey->hasData()) {
$foundKeyColumn = $primaryKey;
}
}
if ($foundKeyColumn && in_array($foundKeyColumn->getType(), array(Column::TYPE_FLOAT, Column::TYPE_INTEGER, Column::TYPE_UNSIGNED_INTEGER))) {
// Executing the query directly, since the mysql_insert_id() command casts the return
// value to c(long), and may truncate.
$result = $this->query('SELECT LAST_INSERT_ID()');
if (!$result || $this->num_rows($result) != 1) {
$this->throwException('Attempt to fetch last insert id value failed: ' . $this->error());
}
$dataRow = $this->fetch_row($result);
$foundKeyColumn->setData(array_shift($dataRow));
}
}
}