forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
block/config MDL-21375 Restrict options on the front page, and use be…
…tter human-readable names
- Loading branch information
Showing
2 changed files
with
33 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
// Pagetypes, as used in block configuration | ||
|
||
$string['page-x'] = 'Any page'; | ||
$string['page-blog-index'] = 'Blog listing pages'; | ||
$string['page-blog-x'] = 'All blog pages'; | ||
$string['page-course-x'] = 'Any course page'; | ||
$string['page-course-view-x'] = 'Any type of course main page'; | ||
$string['page-course-view-weeks'] = 'Any course main page in weeks format'; | ||
$string['page-course-view-topics'] = 'Any course main page in topics format'; | ||
$string['page-mod-x'] = 'Any activity module page'; | ||
$string['page-mod-x-view'] = 'Any main activity module page'; | ||
$string['page-site-x'] = 'Any top-level site page'; | ||
$string['page-site-index'] = 'The front page only'; | ||
$string['page-tag-x'] = 'All tag pages'; | ||
$string['page-user-view'] = 'Only user profile pages'; | ||
$string['page-user-x'] = 'All user pages'; |