12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?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 post edit controller
- */
- class Post extends Actions
- {
- /**
- * Form session key
- * @var string
- */
- protected $_formSessionKey = 'blog_post_form_data';
- /**
- * Allowed Key
- * @var string
- */
- protected $_allowedKey = 'Magefan_Blog::post';
- /**
- * Model class name
- * @var string
- */
- protected $_modelClass = 'Magefan\Blog\Model\Post';
- /**
- * Active menu key
- * @var string
- */
- protected $_activeMenu = 'Magefan_Blog::post';
- /**
- * Status field name
- * @var string
- */
- protected $_statusField = 'is_active';
- }
|