-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Filtering of quests Teams WYSIWYG Editor change to Froala UI tweaks Bug fixes
- Loading branch information
Showing
554 changed files
with
4,491 additions
and
3,606 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Pull request guidelines | ||
|
||
[GitHub pull requests](https://help.github.com/articles/using-pull-requests) are a great way for everyone in the community to contribute to the Laravel codebase. Found a bug? Just fix it in your fork and submit a pull request. This will then be reviewed, and, if found as good, merged into the main repository. | ||
|
||
In order to keep the codebase clean, stable and at high quality, even with so many people contributing, some guidelines are necessary for high-quality pull requests: | ||
|
||
- **Branch:** Unless they are immediate documentation fixes relevant for old versions, pull requests should be sent to the `develop` branch only. Make sure to select that branch as target when creating the pull request (GitHub will not automatically select it.) | ||
- **Documentation:** If you are adding a new feature or changing the API in any relevant way, this should be documented. The documentation files can be found directly in the core repository. | ||
- **Unit tests:** To keep old bugs from re-appearing and generally hold quality at a high level, the Laravel core is thoroughly unit-tested. Thus, when you create a pull request, it is expected that you unit test any new code you add. For any bug you fix, you should also add regression tests to make sure the bug will never appear again. If you are unsure about how to write tests, the core team or other contributors will gladly help. |
Empty file.
Empty file.
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,68 +1,68 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
/** | ||
* Page title | ||
* | ||
* @type string | ||
*/ | ||
'title' => 'Admin', | ||
|
||
/** | ||
* The path to your model config directory | ||
* | ||
* @type string | ||
*/ | ||
'model_config_path' => path('app') . 'config/administrator', | ||
|
||
/** | ||
* The menu structure of the site. Each item should either be the name of the model's config file or an array of names of model config files. | ||
* By doing the latter, you can group certain models together. Each name needs to have a config file in your model config path with the same | ||
* name. So 'users' would require a 'users.php' file in your model config path. | ||
* | ||
* @type array | ||
* | ||
* array( | ||
* 'Products' => array('products', 'product_images', 'orders'), | ||
* 'users', | ||
* ) | ||
*/ | ||
'menu' => array( | ||
'Models' => array('player', 'quest') | ||
), | ||
|
||
/** | ||
* The permission option is the highest-level authentication check that lets you define a closure that should return true if the current user | ||
* is allowed to view the admin section. Any "falsey" response will send the user back to the 'login_path' defined below. | ||
* | ||
* @type closure | ||
*/ | ||
'permission'=> function() | ||
{ | ||
return TRUE; | ||
// return Auth::check(); | ||
}, | ||
|
||
/** | ||
* The login path is the path where Administrator will send the user if they fail a permission check | ||
* | ||
* @type string | ||
*/ | ||
'login_path' => 'user/login', | ||
|
||
/** | ||
* This is the key of the return path that is sent with the redirection to your login_action. Input::get('redirect') will hold the return URL. | ||
* | ||
* @type string | ||
*/ | ||
'login_redirect_key' => 'redirect', | ||
|
||
/** | ||
* Global default rows per page | ||
* | ||
* @type NULL|int | ||
*/ | ||
'global_rows_per_page' => 20, | ||
|
||
<?php | ||
|
||
return array( | ||
|
||
/** | ||
* Page title | ||
* | ||
* @type string | ||
*/ | ||
'title' => 'Admin', | ||
|
||
/** | ||
* The path to your model config directory | ||
* | ||
* @type string | ||
*/ | ||
'model_config_path' => path('app') . 'config/administrator', | ||
|
||
/** | ||
* The menu structure of the site. Each item should either be the name of the model's config file or an array of names of model config files. | ||
* By doing the latter, you can group certain models together. Each name needs to have a config file in your model config path with the same | ||
* name. So 'users' would require a 'users.php' file in your model config path. | ||
* | ||
* @type array | ||
* | ||
* array( | ||
* 'Products' => array('products', 'product_images', 'orders'), | ||
* 'users', | ||
* ) | ||
*/ | ||
'menu' => array( | ||
'Models' => array('player', 'quest') | ||
), | ||
|
||
/** | ||
* The permission option is the highest-level authentication check that lets you define a closure that should return true if the current user | ||
* is allowed to view the admin section. Any "falsey" response will send the user back to the 'login_path' defined below. | ||
* | ||
* @type closure | ||
*/ | ||
'permission'=> function() | ||
{ | ||
return TRUE; | ||
// return Auth::check(); | ||
}, | ||
|
||
/** | ||
* The login path is the path where Administrator will send the user if they fail a permission check | ||
* | ||
* @type string | ||
*/ | ||
'login_path' => 'user/login', | ||
|
||
/** | ||
* This is the key of the return path that is sent with the redirection to your login_action. Input::get('redirect') will hold the return URL. | ||
* | ||
* @type string | ||
*/ | ||
'login_redirect_key' => 'redirect', | ||
|
||
/** | ||
* Global default rows per page | ||
* | ||
* @type NULL|int | ||
*/ | ||
'global_rows_per_page' => 20, | ||
|
||
); |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
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
Empty file.
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
Empty file.
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
Oops, something went wrong.