-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathedit.ctp
More file actions
37 lines (34 loc) · 1.05 KB
/
edit.ctp
File metadata and controls
37 lines (34 loc) · 1.05 KB
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
32
33
34
35
36
37
<?php
/**
* TaskMailSettings edit template
*
* @author Noriko Arai <arai@nii.ac.jp>
* @author Yuto Kitatsuji <kitatsuji.yuto@wihtone.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 echo $this->MailForm->editFrom(
array(
array(
'mailBodyPopoverMessage' => __d('tasks', 'MailSetting.mail_fixed_phrase_body.popover'),
'useNoticeAuthority' => 0,
),
array(
'mailTypeKey' => 'reminder',
'panelHeading' => '期限間近通知メール',
'mailBodyPopoverMessage' => __d('tasks', 'MailSetting.mail_fixed_phrase_body.popover_reminder'),
'useNoticeAuthority' => 0
),
),
NetCommonsUrl::backToIndexUrl('default_setting_action'),
0,
1
); ?>
</div>
</div>