-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathedit.ctp
More file actions
31 lines (28 loc) · 838 Bytes
/
edit.ctp
File metadata and controls
31 lines (28 loc) · 838 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
29
30
31
<?php
/**
* メール設定 template
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Ryuji AMANO <ryuji@ryus.co.jp>
* @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::MAIN_TAB_MAIL_SETTING); ?>
<?php /** @see MailFormHelper::editFrom() */ ?>
<?php echo $this->MailForm->editFrom(
array(
array(
'mailBodyPopoverMessage' => __d('cabinets', 'MailSetting.mail_fixed_phrase_body.popover'),
),
),
NetCommonsUrl::backToIndexUrl('default_setting_action'),
0,
1
); ?>
</div>
</div>