-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathedit.ctp
More file actions
26 lines (23 loc) · 889 Bytes
/
edit.ctp
File metadata and controls
26 lines (23 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* BlogSettings edit template
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Shohei Nakajima <nakajimashouhei@gmail.com>
* @link http://www.netcommons.org NetCommons Project
* @license http://www.netcommons.org/license.txt NetCommons License
* @copyright Copyright 2014, NetCommons Project
*/
?>
<div class="block-setting-body">
<?php echo $this->BlockTabs->main(BlockTabsHelper::MAIN_TAB_BLOCK_INDEX); ?>
<div class="tab-content">
<?php echo $this->BlockTabs->block(BlockTabsHelper::BLOCK_TAB_PERMISSION); ?>
<?php echo $this->element('Blocks.edit_form', array(
'model' => 'BlogBlockRolePermission',
//'action' => 'edit' . '/' . $this->data['Frame']['id'] . '/' . $this->data['Block']['id'],
'callback' => 'Blogs.BlogBlockRolePermissions/edit_form',
'cancelUrl' => NetCommonsUrl::backToIndexUrl('default_setting_action'),
)); ?>
</div>
</div>