3

そこで、TinyMce ヘルパーを実装したいと考えています。Cakephp ベーカリーの指示に従いましたが、まだエラーが発生します。

これは、私のプロジェクト コントローラーのヘルパー配列です。

var $helpers = array('Form', 'Time', 'Crumb', 'Text', 'Tinymce');

これは、私がダウンロードした tinymce ヘルパーです。

<?php
class TinyMceHelper extends AppHelper {
// Take advantage of other helpers
var $helpers = array('Javascript', 'Form');
// Check if the tiny_mce.js file has been added or not
var $_script = false;

/**
 * Adds the tiny_mce.js file and constructs the options
 *
 * @param string $fieldName Name of a field, like this "Modelname.fieldname", "Modelname/fieldname" is deprecated
 * @param array $tinyoptions Array of TinyMCE attributes for this textarea
 * @return string JavaScript code to initialise the TinyMCE area
 */
function _build($fieldName, $tinyoptions = array()) {
    if (!$this->_script) {
        // We don't want to add this every time, it's only needed once
        $this->_script = true;
        $this->Javascript->link('/js/tiny_mce/tiny_mce.js', false);
    }
    // Ties the options to the field
    $tinyoptions['mode'] = 'exact';
    $tinyoptions['elements'] = $this->__name($fieldName);
    return $this->Javascript->codeBlock('tinyMCE.init(' . $this->Javascript->object($tinyoptions) . ');');
}

/**
 * Creates a TinyMCE textarea.
 *
 * @param string $fieldName Name of a field, like this "Modelname.fieldname", "Modelname/fieldname" is deprecated
 * @param array $options Array of HTML attributes.
 * @param array $tinyoptions Array of TinyMCE attributes for this textarea
 * @return string An HTML textarea element with TinyMCE
 */
function textarea($fieldName, $options = array(), $tinyoptions = array()) {
    return $this->Form->textarea($fieldName, $options) . $this->_build($fieldName, $tinyoptions);
}

/**
 * Creates a TinyMCE textarea.
 *
 * @param string $fieldName Name of a field, like this "Modelname.fieldname", "Modelname/fieldname" is deprecated
 * @param array $options Array of HTML attributes.
 * @param array $tinyoptions Array of TinyMCE attributes for this textarea
 * @return string An HTML textarea element with TinyMCE
 */
function input($fieldName, $options = array(), $tinyoptions = array()) {
    $options['type'] = 'textarea';
    return $this->Form->input($fieldName, $options) . $this->_build($fieldName, $tinyoptions);
}
}
?>

そして、これはヘルパーを使用したい追加ビューです:

<?php
echo $form->create('Project');
echo $form->input('title', array('label' => 'Title'));
echo $form->input('website', array('label' => 'Website'));
echo $tinymce->input('description');
echo $form->input('language_id', array('label' => 'Language'));
echo $form->input('tags', array('type' => 'text'));
echo $form->end('Post project');
?>

すべて問題ないように見えますが、次のエラーが発生します。

Warning (512): Method TinyMceHelper::__name does not exist [CORE/cake/libs/view/helper.php, line 154]

ここで一歩足りないと思いますか?

4

3 に答える 3

3

CakePHP 1.3 を使用している必要があります。1.2 のフォーム ヘルパーは__name. 1.3 では、何らかの理由で に変更されました_name

以下からヘルパーを更新する場合:

$tinyoptions['elements'] = $this->__name($fieldName);

$tinyoptions['elements'] = $this->_name($fieldName);

準備万端です。

于 2010-08-27T13:56:40.407 に答える
0

コントローラでヘルパー名を間違って入力したと思います。そのはず :

var $helpers = array('Form', 'Time', 'Crumb', 'Text', 'TinyMce');

そしてあなたの見解では:

echo $tinyMce->input('description');

お役に立てば幸いです。

于 2010-08-27T02:27:01.717 に答える
0

cdburgessが提案したように実行する必要があります。うまくいかない場合は、javascript が読み込まれていることを確認し、tinmce.php を編集して TinyMce ヘルパーのコードを編集し、javascript を適切に読み込むようにします。行は次のようになります。

 $this->Javascript->link('/webroot/js/tiny_mce.js', false);
于 2011-06-25T09:02:07.047 に答える