-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathMyBB.php
More file actions
36 lines (31 loc) · 1.1 KB
/
MyBB.php
File metadata and controls
36 lines (31 loc) · 1.1 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
<?php
namespace Config;
use CodeIgniter\Config\BaseConfig;
class MyBB extends BaseConfig
{
/**
* --------------------------------------------------------------------------
* MyBB Forum ID
* --------------------------------------------------------------------------
*
* Code for the news forum in our MyBB
*/
public $newsForumId = 2;
/**
* --------------------------------------------------------------------------
* MyBB Usernames
* --------------------------------------------------------------------------
*
* An array of user names to restrict our search for news articles to.
* This simply helps limit the work to do.
*/
public $newsUsernames = ['ciadmin', 'kilishan', 'kenjis', 'MGatner', 'michalsn', 'paulbalandan'];
/**
* --------------------------------------------------------------------------
* MyBB Forum URL
* --------------------------------------------------------------------------
*
* The link to direct visitors to for our forum
*/
public $forumURL = 'https://forum.codeigniter.com';
}