本文整理汇总了PHP中PBHelper::formatNewLine方法的典型用法代码示例。如果您正苦于以下问题:PHP PBHelper::formatNewLine方法的具体用法?PHP PBHelper::formatNewLine怎么用?PHP PBHelper::formatNewLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PBHelper
的用法示例。
在下文中一共展示了PBHelper::formatNewLine方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: componentSave
function componentSave($postId, $componentId, $request)
{
$data = $this->getData($postId);
$dataComponent = $this->getComponent($componentId, $data);
if ($dataComponent === false) {
return false;
}
$id = $dataComponent['component']['data']['componentId'];
$value = array();
foreach ($this->componentData[$id]['structure']['element'] as $elementData) {
$name = $elementData['id'];
if (!array_key_exists($name, $request)) {
continue;
}
if (in_array($elementData['ui']['element']['type'], array('select-one', 'radio', 'checkbox', 'choice-1', 'choice-2'))) {
if ($request[$name] == -1) {
$request[$name] = null;
}
}
if (is_array($request[$name])) {
$value[$name] = $request[$name];
} else {
$value[$name] = $request[$name];
}
}
PBHelper::formatNewLine($value);
$lineIndex = $dataComponent['line']['index'];
$columnIndex = $dataComponent['column']['index'];
$componentIndex = $dataComponent['component']['index'];
$data['line'][$lineIndex]['column'][$columnIndex]['component'][$componentIndex]['value'] = $value;
$this->updateData($postId, $data);
return true;
}