Add notes to changelog, controllers should use plural naming

This commit is contained in:
Sam Georges 2014-07-19 16:14:46 +10:00
parent 15b93c7b03
commit 3c11249bef
5 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,5 @@
* **Build 125** (2014-07-xx)
- Added new Theme picker to the backend via Settings > Front-end theme
- New shorthand method for `$this->getClassExtension('Backend.Behaviors.FormController')` becomes `$this->asExtension('FormController')`.
- Buttons inside a popup support new `data-popup-load-indicator` attribute.

View File

@ -111,7 +111,7 @@ class ServiceProvider extends ModuleServiceProvider
'description' => 'cms::lang.theme.settings_menu_description',
'category' => 'CMS',
'icon' => 'icon-picture-o',
'url' => Backend::URL('cms/theme'),
'url' => Backend::URL('cms/themes'),
'order' => 200
]
]);

View File

@ -14,7 +14,7 @@ use Cms\Classes\Theme as CmsTheme;
* @author Alexey Bobkov, Samuel Georges
*
*/
class Theme extends Controller
class Themes extends Controller
{
public $requiredPermissions = ['cms.manage_themes'];
@ -35,7 +35,7 @@ class Theme extends Controller
public function index()
{
}
public function index_onSetActiveTheme()