function fckeditor_rule_create in FCKeditor - WYSIWYG HTML editor 6.2
1 call to fckeditor_rule_create()
- fckeditor_process_textarea in ./
fckeditor.module - This function create the HTML objects required for the FCKeditor
File
- ./
fckeditor.admin.inc, line 1372 - FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben
Code
function fckeditor_rule_create($nodetype = '*', $path = '*', $fieldname = '*') {
$rule = new stdClass();
$rule->nodetype = $nodetype;
$rule->path = $path;
$rule->field = $fieldname;
return $rule;
}