This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from wwphp-fb/feature/modulemanager
Feature/modulemanager
- Loading branch information
Showing
11 changed files
with
502 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,35 @@ | ||
# General | ||
facebookbot: | ||
email: email@domain.tld | ||
password: secretpassword | ||
group_id: 314159265 | ||
app_id: 123456789 | ||
app_secret: d5EhCCp3V021UWoN49Qcvv7gFvh... | ||
access_token: CAACEcBAD6wzVT0dSnpZCbIEbxL... # optional | ||
debug: false | ||
debug: false | ||
|
||
connection: | ||
group_id: 314159265 | ||
email: email@domain.tld | ||
password: secretpassword | ||
app_id: 123456789 | ||
app_secret: d5EhCCp3V021UWoN49Qcvv7gFvh... | ||
access_token: CAACEcBAD6wzVT0dSnpZCbIEbxL... # optional | ||
|
||
# Member Request Module | ||
mod-memberrequest: | ||
autoload: true | ||
|
||
# New Post Module | ||
mod-newpost: | ||
autoload: true | ||
gistify_comment: | | ||
[admin] Hi, {author}. | ||
Please keep your post readable by using Gist as your codepad. We have created an example based on your code, so others can read it clearly: {gist_link}. | ||
gistify_patterns: | ||
- '%\<\?(php)?%' # start PHP code | ||
- '%\$\w.*\=.*;%' # variable assignment | ||
- '%(if|for|foreach|while|switch)\s*\(.*\)%' # statement | ||
- '%^return(\s+.*)?;%' # return statement | ||
- '%\w\S*\s*\(.*\)\s*;%' # function call | ||
- '%\<\w+\>(.*</\w+>)%' # html tag | ||
- '%(public|protected|private)\s+(static\s+)?\$\w.*;%' # class field | ||
- '%(public|protected|private)\s+(abstract|static\s+)?function\s*\(%' # class method | ||
- '%{|}%' # curly brace | ||
- '%(abstract\s+)?(class|interface)\s+\w+%' # class, interface | ||
- '%^use\s+(\S+);%' # use statement | ||
gistify_minimum_lines: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.