本文整理汇总了PHP中gpOutput::nested_edit方法的典型用法代码示例。如果您正苦于以下问题:PHP gpOutput::nested_edit方法的具体用法?PHP gpOutput::nested_edit怎么用?PHP gpOutput::nested_edit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gpOutput
的用法示例。
在下文中一共展示了gpOutput::nested_edit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: GetSection
public function GetSection(&$section_num)
{
global $langmessage;
if (!isset($this->file_sections[$section_num])) {
trigger_error('invalid section number');
return;
}
$curr_section_num = $section_num;
$section_num++;
$content = '';
$section_data = $this->file_sections[$curr_section_num];
//make sure section_data is an array
$type = gettype($section_data);
if ($type !== 'array') {
trigger_error('$section_data is ' . $type . '. Array expected');
return;
}
$section_data += array('attributes' => array(), 'type' => 'text');
$section_data['attributes'] += array('class' => '');
$orig_attrs = $section_data['attributes'];
$section_data['attributes']['data-gp-section'] = $curr_section_num;
$section_types = section_content::GetTypes();
if (gpOutput::ShowEditLink() && admin_tools::CanEdit($this->gp_index)) {
if (isset($section_types[$section_data['type']])) {
$title_attr = $section_types[$section_data['type']]['label'];
} else {
$title_attr = sprintf($langmessage['Section %s'], $curr_section_num + 1);
}
$attrs = array('title' => $title_attr, 'data-cmd' => 'inline_edit_generic', 'data-arg' => $section_data['type'] . '_inline_edit');
$link = gpOutput::EditAreaLink($edit_index, $this->title, $langmessage['edit'], 'section=' . $curr_section_num . '&revision=' . $this->fileModTime, $attrs);
//section control links
if ($section_data['type'] != 'wrapper_section') {
ob_start();
echo '<span class="nodisplay" id="ExtraEditLnks' . $edit_index . '">';
echo $link;
echo common::Link($this->title, $langmessage['Manage Sections'], 'cmd=ManageSections', array('class' => 'manage_sections', 'data-cmd' => 'inline_edit_generic', 'data-arg' => 'manage_sections'));
echo '<hr/>';
echo common::Link($this->title, $langmessage['rename/details'], 'cmd=renameform', 'data-cmd="gpajax"');
echo common::Link($this->title, $langmessage['Revision History'], 'cmd=ViewHistory', array('data-cmd' => 'gpabox'));
echo '</span>';
gpOutput::$editlinks .= ob_get_clean();
}
$section_data['attributes']['id'] = 'ExtraEditArea' . $edit_index;
$section_data['attributes']['class'] .= ' editable_area';
// class="edit_area" added by javascript
}
$content .= $this->SectionNode($section_data, $orig_attrs);
if ($section_data['type'] == 'wrapper_section') {
for ($cc = 0; $cc < $section_data['contains_sections']; $cc++) {
$content .= $this->GetSection($section_num);
}
} else {
gpOutput::$nested_edit = true;
$content .= section_content::RenderSection($section_data, $curr_section_num, $this->title, $this->file_stats);
gpOutput::$nested_edit = false;
}
if (!isset($section_data['nodeName'])) {
$content .= '<div class="gpclear"></div>';
$content .= '</div>';
} else {
$content .= section_content::EndTag($section_data['nodeName']);
}
return $content;
}