本文整理汇总了PHP中block::updateBlockAndData方法的典型用法代码示例。如果您正苦于以下问题:PHP block::updateBlockAndData方法的具体用法?PHP block::updateBlockAndData怎么用?PHP block::updateBlockAndData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类block
的用法示例。
在下文中一共展示了block::updateBlockAndData方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: updataBlockAndData
public function updataBlockAndData()
{
$intCellId = intval($this->input['intCellId']);
$arBlockInfo = $this->input['arBlockInfo'];
if (!$intCellId && empty($arBlockInfo)) {
$this->errorOutput('参数不完整,编辑失败');
}
$intDataNum = count($arBlockInfo['content']);
//更改单元的数据源参数
if (!class_exists('cell')) {
include CUR_CONF_PATH . 'lib/cell.class.php';
}
$objCell = new cell();
$arCellInfo = $objCell->detail(' AND id = ' . $intCellId);
$arParamAsso = $arCellInfo['param_asso'];
$arParamAsso['input_param']['count'] = $intDataNum;
$objCell->update(array('param_asso' => serialize($arParamAsso)), $intCellId);
//更改区块和数据
$arBlockInfo['block']['line_num'] = $intDataNum;
if (!class_exists('block')) {
include ROOT_PATH . 'lib/class/block.class.php';
}
$objBlock = new block();
$objBlock->updateBlockAndData($arBlockInfo);
//重新处理该单元信息
if (!class_exists('Magic')) {
include CUR_CONF_PATH . 'lib/magic.class.php';
}
$objMagic = new Magic();
$arCellInfo = $objMagic->cellProcess($arCellInfo);
$this->addItem($arCellInfo);
$this->output();
}