我已根据教程here创建了一个管理模块。我试图根据找到的信息here将我的两个表单输入更改为所见即所得的编辑器。但是,每当我加载编辑页面时,我都会收到错误Call to a member function setCanLoadTinyMce() on a non-object
。 $this->getLayout()->getBlock('head')
var_dumps为false。
命名空间/幻灯片/阻止/ Adminhtml /幻灯片/ Edit.php如下所示
class Namespace_Slides_Block_Adminhtml_Slide_Edit
extends Mage_Adminhtml_Block_Widget_Form_Container
{
protected function _prepareLayout()
{
parent::_prepareLayout();
if (Mage::getSingleton('cms/wysiwyg_config')->isEnabled()) {
$this->getLayout()->getBlock('head')->setCanLoadTinyMce(true);
}
}
protected function _construct()
{
//... Construction stuff
}
}
命名空间/幻灯片/砌块/ Adminhtml /幻灯片/编辑/ form.php的
class Cfw_Slides_Block_Adminhtml_Slide_Edit_Form
extends Mage_Adminhtml_Block_Widget_Form
{
protected function _prepareForm()
{
//...Do some things first, like create the fieldset..
//Add the editable fields
$this->_addFieldsToFieldset($fieldset, array(
'foreground_image' => array(
'label' => $this->__('Foreground Image'),
'input' => 'image',
'required' => false,
),
'background_image' => array(
'label' => $this->__('Background Image'),
'input' => 'editor',
'required' => true,
'config' => Mage::getSingleton('cms/wysiwyg_config')->getConfig(),
'wysiwyg' => true,
),
'description' => array(
'label' => $this->__('Text Overlay'),
'input' => 'editor',
'required' => false,
'config' => Mage::getSingleton('cms/wysiwyg_config')->getConfig(),
'wysiwyg' => true,
)
));
return $this;
}
protected function _addFieldsToFieldset(
Varien_Data_Form_ElementFieldset $fieldset, $fields)
{
$requestData = new Varien_Object($this->getRequest()->getPost('slideData'));
foreach ($fields as $name => $_data) {
if ($requestValue = $requestData->getData($name)) {
$_data['value'] = $requestValue;
}
//Wrap all fields with slideData group
$_data['name'] = "slideData[$name]";
//Generally, label and title are always the same
$_data['title'] = $_data['label'];
//If no new value exists, use the existing slide data.
if (!array_key_exists('value', $_data)) {
$_data['value'] = $this->_getSlide()->getData($name);
}
//Finally, call vanilla funcctionality to add field.
$fieldset->addField($name, $_data['input'], $_data);
}
return $this;
}
}
我不确定你是否需要它,但这里也是我的文件结构
Namespace
-Slides
--Block
---Adminhtml
----Slide
-----Edit
------Form.php
-----Edit.php
-----Grid.php
----Slide.php
--controllers
---Adminhtml
----SlideConroller.php
--etc
---config.xml
--Helper
---Data.php
--Model
---Resource
----Slide
-----Collection.php
----Slide.php
---Slide.php
--sql
---namespace_slides_setup
----install-0.0.1.php
答案 0 :(得分:0)
问题是Magento无法找到您的head
阻止。
而不是使用:
$this->getLayout()->getBlock('head')->setCanLoadTinyMce(true);
尝试这样称呼:
Mage::app()->getLayout()->getBlock('head')->setCanLoadTinyMce(true);
如果这不起作用,那就是一个不同的问题,但问题仍然是Magento无法找到head
块。
答案 1 :(得分:0)
我想你不再需要这个解决方案,但我使用你所做的相同教程遇到了同样的问题。
头部' block(因此setCanLoadTinyMce())在Edit.php和Form.php中通过_prepareLayout()函数不可用。
头部'在editAction()函数中的$ this-> loadLayout()和$ this-> renderLayout之间的控制器(在你的情况下为SlideController.php)中可以使用块。
在SlideController.php
更改
$this->loadLayout()
->_addContent($brandBlock)
->renderLayout();
到
$this->loadLayout() ;
$this->_addContent($brandBlock);
$this->getLayout()->getBlock('head')->setCanLoadTinyMce(true);
$this->renderLayout();