mPlugins['bithtml']) && $gLibertySystem->mPlugins['bithtml']['is_active'] == 'y') || (!empty($gLibertySystem->mPlugins['tikiwiki']) && $gLibertySystem->mPlugins['tikiwiki']['is_active'] == 'y' && $gBitSystem->isFeatureActive( 'content_force_allow_html' ))) && empty( $pParams['nowysiwyg'] ) ) { $class .= 'wysiwyg'; } if (empty($pParams['rows'])) { $pParams['rows'] = empty($_COOKIE['rows']) ? $gBitSystem->getConfig('liberty_textarea_height', 20) : $_COOKIE['rows']; } if (empty($pParams['cols'])) { $pParams['cols'] = empty($_COOKIE['cols']) ? $gBitSystem->getConfig('liberty_textarea_width', 35) : $_COOKIE['rows']; } if (empty($pParams['id'])) { $pParams['id'] = LIBERTY_TEXT_AREA; } if( empty( $pParams['name'] ) ){ $pParams['name'] = 'edit'; } if( empty( $pParams['maxchars'] ) ){ // prevent smarty presistence of vars $pParams['maxchars'] = 0; } foreach ($pParams as $_key=>$_value) { switch ($_key) { case 'edit': case 'name': case 'id': case 'help': case 'noformat': case 'label': case 'error': case 'required': case 'maxchars': $gBitSmarty->assign("textarea_".$_key, $_value); break; case 'class': $class .= ' '.$_key; break; case 'style': $style .= $_key; break; case 'formatguid': $gBitSmarty->assign('formatGuid', $_value); break; case 'langcode': $gBitSmarty->assign('langCode', $_value); break; case 'gContent': // Trick out gContent $oldContent = $gContent; $gContent = $_value; $gBitSmarty->assign('gContent', $_value); break; default: $attributes .= $_key.'="'.$_value.'" '; break; } } $gBitSmarty->assign('textarea_attributes', $attributes); if (!empty($style)) { $gBitSmarty->assign('textarea_style', 'style="'.$style.'"'); } $gBitSmarty->assign('textarea_class', 'class="form-control '.$class.'"'); if( !empty( $pParams['edit'] ) && strpos( $class, 'wysiwyg' ) !== false && $gBitSystem->isPackageActive( 'ckeditor' ) && function_exists( 'ckeditor_code_wiki_to_pre' ) ) { $gBitSmarty->assign( 'textarea_edit', ckeditor_code_wiki_to_pre( $pParams['edit'] ) ); } $ret = $gBitSmarty->fetch("bitpackage:liberty/edit_textarea.tpl"); if( is_object( $gContent ) ) { if( $formatGuid = $gContent->getField( 'format_guid' ) ) { $gBitSmarty->assign('formatGuid', $formatGuid); } if( $langCode = $gContent->getField( 'lang_code' ) ) { $gBitSmarty->assign( 'langCode', $langCode ); } } // Restore gContent if (isset($oldContent)) { $gContent = $oldContent; $gBitSmarty->assign('gContent', $oldContent); } // since we have the funky {textarea} in play, we'll display the edit help tab $gBitSmarty->assign( 'display_help_tab', TRUE ); return $ret; }