Add notes to changelog, controllers should use plural naming
This commit is contained in:
parent
15b93c7b03
commit
3c11249bef
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
]
|
||||
]);
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
Loading…
Reference in New Issue