-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBbsMailSettingsController.php
More file actions
43 lines (39 loc) · 1.18 KB
/
BbsMailSettingsController.php
File metadata and controls
43 lines (39 loc) · 1.18 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
38
39
40
41
42
43
<?php
/**
* メール設定Controller
*
* @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
*/
App::uses('MailSettingsController', 'Mails.Controller');
/**
* メール設定Controller
*
* @author Shohei Nakajima <nakajimashouhei@gmail.com>
* @package NetCommons\Bbses\Controller
*/
class BbsMailSettingsController extends MailSettingsController {
/**
* use helpers
*
* @var array
*/
public $helpers = array(
'Blocks.BlockRolePermissionForm',
'Blocks.BlockTabs' => array(
'mainTabs' => array(
'block_index' => array('url' => array('controller' => 'bbs_blocks')),
'frame_settings' => array('url' => array('controller' => 'bbs_frame_settings')),
),
'blockTabs' => array(
'block_settings' => array('url' => array('controller' => 'bbs_blocks')),
'mail_settings' => array('url' => array('controller' => 'bbs_mail_settings')),
'role_permissions' => array('url' => array('controller' => 'bbs_block_role_permissions')),
),
),
'Mails.MailForm',
);
}