0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: block.textarea.php
<?php //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } /* * smarty_block_textarea : add a textarea to a template. * * special params: * _quicktags: if set to 'y', display quicktags above the textarea * _enlarge: if set to 'y', display the enlarge buttons above the textarea * * usage: {textarea id='my_area' name='my_area'}{tr}My Text{/tr}{/textarea} * */ function smarty_block_textarea($params, $content, &$smarty, $repeat) { global $prefs; if ( $repeat ) return; if ( ! isset($params['_quicktags']) || $prefs['javascript_enabled'] != 'y') $params['_quicktags'] = 'n'; /* if ( ! isset($params['_wikiparsed']) ) { // Quicktags implies wiki parsing $params['_wikiparsed'] = $params['quicktags']; } */ if ( ! isset($params['_wysiwyg']) ) $params['_wysiwyg'] = 'n'; if ( isset($params['_zoom']) && $params['_zoom'] == 'n' ) { $feature_template_zoom_orig = $prefs['feature_template_zoom']; $prefs['feature_template_zoom'] = 'n'; } if ( ! isset($params['_section']) ) { global $section; $params['_section'] = $section? $section: 'wiki'; } if ( ! isset($params['style']) ) $params['style'] = 'width:99%'; $html = ''; if ( $params['_wysiwyg'] == 'y' ) { // TODO // {editform Meat=$pagedata InstanceName='edit' ToolbarSet="Tiki"} // <input type="hidden" name="wysiwyg" value="y" /> } else { if ( $params['_quicktags'] == 'y' ) { global $quicktagslib; include_once ('lib/quicktags/quicktagslib.php'); $quicktags = $quicktagslib->list_quicktags(0, -1, 'taglabel_asc', '', $params['_section']); $smarty->assign_by_ref('quicktags', $quicktags["data"]); } else { $smarty->clear_assign('quicktags'); } if ( isset($params['_enlarge']) && $params['_enlarge'] == 'y' ) $smarty->assign_by_ref('enlarge', $params['_enlarge']); $textarea_attributes = ''; foreach ( $params as $k => $v ) { if ( $k == 'id' || $k == 'name' || $k == 'class' ) { $smarty->assign('textarea_'.$k, $v); } elseif ( $k[0] != '_' ) { $textarea_attributes .= ' '.$k.'="'.$v.'"'; } } if ( $textarea_attributes != '' ) { $smarty->assign('textarea_attributes', $textarea_attributes); } $smarty->assign_by_ref('pagedata', $content); $html .= $smarty->fetch('wiki_edit.tpl'); $html .= "\n".'<input type="hidden" name="rows" value="'.$params['rows'].'"/>' ."\n".'<input type="hidden" name="cols" value="'.$params['cols'].'"/>' ."\n".'<input type="hidden" name="wysiwyg" value="'.$params['_wysiwyg'].'" />'; /* Commented because wiki may have to be supported everywhere and is not a user choice. IMO, It complexify the user interface for no good reason. if ( $params['_wikiparsed'] == 'optional_on' || $params['_wikiparsed'] == 'optional_off' ) { $html .= '<input type="checkbox" name="'.$params['name'].'IsParsed"' . ( $params['_wikiparsed'] == 'optional_on' ? ' checked="checked"' : '' ) . ' onclick="toggleBlock(\'qt'.$params['name'].'\');" /> ' . tra('Allow wiki syntax') . '<br />'; } */ if ( isset($params['_zoom']) && $params['_zoom'] == 'n' ) { $prefs['feature_template_zoom'] = $feature_template_zoom_orig; } } return $html; }
© 2017 -
ZeroByte.ID
.