-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathedit.ctp
More file actions
28 lines (26 loc) · 856 Bytes
/
edit.ctp
File metadata and controls
28 lines (26 loc) · 856 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
27
28
<?php
/**
* Blog frame setting 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
*/
?>
<article class="block-setting-body">
<?php echo $this->BlockTabs->main(BlockTabsHelper::MAIN_TAB_FRAME_SETTING); ?>
<div class="tab-content">
<?php echo $this->element('Blocks.edit_form', array(
'model' => 'BlogFrameSetting',
'action' => NetCommonsUrl::actionUrl(array(
'controller' => $this->params['controller'],
'action' => 'edit',
'frame_id' => Current::read('Frame.id')
)),
'callback' => 'Blogs.BlogFrameSettings/edit_form',
'cancelUrl' => NetCommonsUrl::backToPageUrl(),
)); ?>
</div>
</article>