123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * Copyright © 2015 Ihor Vansach (ihor@magefan.com). All rights reserved.
- * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
- *
- * Glory to Ukraine! Glory to the heroes!
- */
- namespace Magefan\Blog\Controller\Adminhtml;
- /**
- * Admin blog category edit controller
- */
- class Category extends Actions
- {
- /**
- * Form session key
- * @var string
- */
- protected $_formSessionKey = 'blog_category_form_data';
- /**
- * Allowed Key
- * @var string
- */
- protected $_allowedKey = 'Magefan_Blog::category';
- /**
- * Model class name
- * @var string
- */
- protected $_modelClass = 'Magefan\Blog\Model\Category';
- /**
- * Active menu key
- * @var string
- */
- protected $_activeMenu = 'Magefan_Blog::category';
- /**
- * Status field name
- * @var string
- */
- protected $_statusField = 'is_active';
- }
|