当前位置: 首页>>代码示例>>PHP>>正文


PHP string_textarea函数代码示例

本文整理汇总了PHP中string_textarea函数的典型用法代码示例。如果您正苦于以下问题:PHP string_textarea函数的具体用法?PHP string_textarea怎么用?PHP string_textarea使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了string_textarea函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: require_api

require_api('utility_api.php');
# Check if project documentation feature is enabled.
if (OFF == config_get('enable_project_documentation') || !file_is_uploading_enabled() || !file_allow_project_upload()) {
    access_denied();
}
$f_file_id = gpc_get_int('file_id');
$c_file_id = db_prepare_int($f_file_id);
$t_project_id = file_get_field($f_file_id, 'project_id', 'project');
access_ensure_project_level(config_get('upload_project_file_threshold'), $t_project_id);
$t_proj_file_table = db_get_table('project_file');
$query = "SELECT *\n\t\tFROM {$t_proj_file_table}\n\t\tWHERE id=" . db_param();
$result = db_query_bound($query, array($c_file_id));
$row = db_fetch_array($result);
extract($row, EXTR_PREFIX_ALL, 'v');
$v_title = string_attribute($v_title);
$v_description = string_textarea($v_description);
$t_max_file_size = (int) min(ini_get_number('upload_max_filesize'), ini_get_number('post_max_size'), config_get('max_file_size'));
html_page_top();
?>

<br />
<div>
<form method="post" enctype="multipart/form-data" action="proj_doc_update.php">
<?php 
echo form_security_field('proj_doc_update');
?>
<table class="width75" cellspacing="1">
<tr>
	<td class="form-title">
		<input type="hidden" name="file_id" value="<?php 
echo $f_file_id;
开发者ID:N0ctrnl,项目名称:mantisbt,代码行数:31,代码来源:proj_doc_edit_page.php

示例2: helper_alternate_class

}
?>

<!-- Description -->
<tr <?php 
echo helper_alternate_class();
?>
>
	<th class="category">
		<?php 
echo lang_get('description');
?>
	</th>
	<td>
		<textarea name="description" cols="60" rows="5"><?php 
echo string_textarea($row['description']);
?>
</textarea>
	</td>
</tr>

<?php 
event_signal('EVENT_MANAGE_PROJECT_UPDATE_FORM', array($f_project_id));
?>

<!-- Submit Button -->
<tr>
	<td>&nbsp;</td>
	<td>
		<input type="submit" class="button" value="<?php 
echo lang_get('update_project_button');
开发者ID:kaos,项目名称:mantisbt,代码行数:31,代码来源:manage_proj_edit_page.php

示例3: helper_alternate_class

<!-- Description -->
<tr <?php 
echo helper_alternate_class();
?>
>
	<td class="category"><?php 
echo lang_get('tag_description');
?>
</td>
	<td colspan="4">
		<textarea name="description" <?php 
echo helper_get_tab_index();
?>
 cols="80" rows="6"><?php 
echo string_textarea($t_description);
?>
</textarea>
	</td>
</tr>

<!-- Submit Button -->
<tr>
	<td class="center" colspan="6">
		<input <?php 
echo helper_get_tab_index();
?>
 type="submit" class="button" value="<?php 
echo lang_get('tag_update_button');
?>
" />
开发者ID:nourchene-benslimane,项目名称:mantisV0,代码行数:30,代码来源:tag_update_page.php

示例4: in_array

$t_show_os_version = $t_show_profiles && in_array('os_version', $t_fields);
$t_show_versions = version_should_show_product_version($t_bug->project_id);
$t_show_product_version = $t_show_versions && in_array('product_version', $t_fields);
$t_show_product_build = $t_show_versions && in_array('product_build', $t_fields) && config_get('enable_product_build') == ON;
$t_product_build_attribute = $t_show_product_build ? string_attribute($t_bug->build) : '';
$t_show_target_version = $t_show_versions && in_array('target_version', $t_fields) && access_has_bug_level(config_get('roadmap_update_threshold'), $t_bug_id);
$t_show_fixed_in_version = $t_show_versions && in_array('fixed_in_version', $t_fields);
$t_show_due_date = in_array('due_date', $t_fields) && access_has_bug_level(config_get('due_date_view_threshold'), $t_bug_id);
$t_show_summary = in_array('summary', $t_fields);
$t_summary_attribute = $t_show_summary ? string_attribute($t_bug->summary) : '';
$t_show_description = in_array('description', $t_fields);
$t_description_textarea = $t_show_description ? string_textarea($t_bug->description) : '';
$t_show_additional_information = in_array('additional_info', $t_fields);
$t_additional_information_textarea = $t_show_additional_information ? string_textarea($t_bug->additional_information) : '';
$t_show_steps_to_reproduce = in_array('steps_to_reproduce', $t_fields);
$t_steps_to_reproduce_textarea = $t_show_steps_to_reproduce ? string_textarea($t_bug->steps_to_reproduce) : '';
if (NO_USER == $t_bug->handler_id) {
    $t_handler_name = '';
} else {
    $t_handler_name = string_display_line(user_get_name($t_bug->handler_id));
}
$t_can_change_view_state = $t_show_view_state && access_has_project_level(config_get('change_view_status_threshold'));
if ($t_show_product_version) {
    $t_product_version_released_mask = VERSION_RELEASED;
    if (access_has_project_level(config_get('report_issues_for_unreleased_versions_threshold'))) {
        $t_product_version_released_mask = VERSION_ALL;
    }
}
$t_formatted_bug_id = $t_show_id ? bug_format_id($f_bug_id) : '';
$t_project_name = $t_show_project ? string_display_line(project_get_name($t_bug->project_id)) : '';
if ($t_show_due_date) {
开发者ID:N0ctrnl,项目名称:mantisbt,代码行数:31,代码来源:bug_update_page.php

示例5: helper_alternate_class

<!-- Description -->
<tr <?php 
echo helper_alternate_class();
?>
>
	<td class="category"><?php 
echo lang_get('tag_description');
?>
</td>
	<td colspan="4">
		<textarea name="description" <?php 
echo helper_get_tab_index();
?>
 cols="80" rows="6"><?php 
echo string_textarea($t_tag_row['description']);
?>
</textarea>
	</td>
</tr>

<!-- Submit Button -->
<tr>
	<td class="center" colspan="6">
		<input <?php 
echo helper_get_tab_index();
?>
 type="submit" class="button" value="<?php 
echo lang_get('tag_update_button');
?>
" />
开发者ID:jin255ff,项目名称:company_website,代码行数:30,代码来源:tag_update_page.php

示例6: html_page_top1

html_page_top1();
if (OFF == plugin_config_get('worklog_view_window')) {
    html_page_top2();
}
?>

<?php 
access_ensure_project_level(DEVELOPER);
$f_id = gpc_get_int('f_id');
# Retrieve faq item data and prefix with v_
$row = worklog_select_query($f_id);
if ($row) {
    extract($row, EXTR_PREFIX_ALL, "v");
}
$v_subject = string_attribute($v_subject);
$v_content = string_textarea($v_content);
?>

<?php 
# Edit faq Form BEGIN
?>
<p>
<div align="center">
<form method="post" action="<?php 
global $g_worklog_update;
echo $g_worklog_update;
?>
">
<input type="hidden" name="f_id" value="<?php 
echo $v_id;
?>
开发者ID:pinke,项目名称:worklog,代码行数:31,代码来源:worklog_edit_page.php

示例7: html_page_top1

html_page_top1();
if (OFF == plugin_config_get('faq_view_window')) {
    html_page_top2();
}
?>

<?php 
access_ensure_project_level(DEVELOPER);
$f_id = gpc_get_int('f_id');
# Retrieve faq item data and prefix with v_
$row = faq_select_query($f_id);
if ($row) {
    extract($row, EXTR_PREFIX_ALL, "v");
}
$v_question = string_attribute($v_question);
$v_answere = string_textarea($v_answere);
?>

<?php 
# Edit faq Form BEGIN
?>
<p>
<div align="center">
<form method="post" action="<?php 
global $g_faq_update;
echo $g_faq_update;
?>
">
<input type="hidden" name="f_id" value="<?php 
echo $v_id;
?>
开发者ID:xxNull-lsk,项目名称:faq,代码行数:31,代码来源:faq_edit_page.php

示例8: string_attribute

	<td>
		<input type="text" name="os" size="32" maxlength="32" value="<?php echo string_attribute( $v_os ) ?>" />
	</td>
</tr>
<tr class="row-1">
	<th class="category">
		<span class="required">*</span><?php echo lang_get( 'os_version' ) ?>
	</th>
	<td>
		<input type="text" name="os_build" size="16" maxlength="16" value="<?php echo string_attribute( $v_os_build ) ?>" />
	</td>
</tr>
<tr class="row-2">
	<th class="category">
		<?php echo lang_get( 'additional_description' ) ?>
	</th>
	<td>
		<textarea name="description" cols="60" rows="8"><?php echo string_textarea( $v_description ) ?></textarea>
	</td>
</tr>
<tr>
	<td class="center" colspan="2">
		<input type="submit" class="button" value="<?php echo lang_get( 'update_profile_button' ) ?>" />
	</td>
</tr>
</table>
</form>
</div>
<?php
html_page_bottom();
开发者ID:rombert,项目名称:mantisbt,代码行数:30,代码来源:account_prof_edit_page.php

示例9: ERP_output_config_option


//.........这里部分代码省略.........
                    check_checked((int) $t_value, ON);
                    echo '/>' . lang_get('yes') . '</label></td>';
                    echo '<td class="center" width="20%"><label><input ' . helper_get_tab_index() . ' type="radio" name="' . $t_input_name . '" value="' . OFF . '" ';
                    // NULL can also be interpreted as 0. But in this case NULL means no option chosen
                    if ($t_value !== NULL) {
                        check_checked((int) $t_value, OFF);
                    }
                    echo '/>' . lang_get('no') . '</label></td>';
                    break;
                case 'directory_string':
                    $t_dir = $t_value;
                    if (is_dir($t_dir)) {
                        $t_result_is_dir_color = 'positive';
                        $t_result_is_dir_text = plugin_lang_get('directory_exists', 'EmailReporting');
                        if (is_writable($t_dir)) {
                            $t_result_is_writable_color = 'positive';
                            $t_result_is_writable_text = plugin_lang_get('directory_writable', 'EmailReporting');
                        } else {
                            $t_result_is_writable_color = 'negative';
                            $t_result_is_writable_text = plugin_lang_get('directory_unwritable', 'EmailReporting');
                        }
                    } else {
                        $t_result_is_dir_color = 'negative';
                        $t_result_is_dir_text = plugin_lang_get('directory_unavailable', 'EmailReporting');
                        $t_result_is_writable_color = NULL;
                        $t_result_is_writable_text = NULL;
                    }
                    echo '
	<td class="center" width="20%">
		<input ' . helper_get_tab_index() . ' type="text" size="30" maxlength="200" name="' . $t_input_name . '" value="' . string_attribute($t_dir) . '"/>
	</td>
	<td class="center" width="20%">
		<span class="' . $t_result_is_dir_color . '">' . $t_result_is_dir_text . '</span><br /><span class="' . $t_result_is_writable_color . '">' . $t_result_is_writable_text . '</span>
	</td>';
                    break;
                case 'disabled':
                    echo '<td class="center" width="40%" colspan="2">' . plugin_lang_get('disabled');
                    ERP_output_config_option($t_input_name, 'hidden', $t_value);
                    echo '</td>';
                    break;
                case 'integer':
                case 'string':
                    echo '<td class="center" width="40%" colspan="2"><input ' . helper_get_tab_index() . ' type="text" size="50" maxlength="100" name="' . $t_input_name . '" value="' . string_attribute($t_value) . '"/></td>';
                    break;
                case 'string_multiline':
                case 'string_multiline_array':
                    echo '<td class="center" width="40%" colspan="2"><textarea ' . helper_get_tab_index() . ' cols="40" rows="6" name="' . $t_input_name . '">';
                    if (is_array($t_value)) {
                        if ($p_type === 'string_multiline_array') {
                            $t_string_array = var_export($t_value, TRUE);
                            $t_string_array = array_map('trim', explode("\n", $t_string_array));
                            // remove the array opening and closing character
                            array_shift($t_string_array);
                            array_pop($t_string_array);
                            $t_string_array = implode("\n", $t_string_array);
                        } else {
                            $t_string_array = implode("\n", $t_value);
                        }
                        echo string_textarea($t_string_array);
                    } else {
                        echo string_textarea($t_value);
                    }
                    echo '</textarea></td>';
                    break;
                case 'string_password':
                    echo '<td class="center" width="40%" colspan="2"><input ' . helper_get_tab_index() . ' type="password" size="50" maxlength="50" name="' . $t_input_name . '" value="' . string_attribute(base64_decode($t_value)) . '"/></td>';
                    break;
                case 'dropdown':
                case 'dropdown_any':
                case 'dropdown_multiselect':
                case 'dropdown_multiselect_any':
                    echo '<td class="center" width="40%" colspan="2"><select ' . helper_get_tab_index() . ' name="' . $t_input_name . (in_array($p_type, array('dropdown_multiselect', 'dropdown_multiselect_any'), TRUE) ? '[]" multiple size="6' : NULL) . '">';
                    if (function_exists($t_function_name)) {
                        if (in_array($p_type, array('dropdown_any', 'dropdown_multiselect_any'), TRUE)) {
                            echo '<option value="' . META_FILTER_ANY . '"';
                            check_selected((array) $t_value, META_FILTER_ANY);
                            echo '>[' . lang_get('any') . ']</option>';
                        }
                        $t_function_name($t_value, $p_function_parameter);
                    } else {
                        echo '<option class="negative">' . plugin_lang_get('function_not_found', 'EmailReporting') . ': ' . $t_function_name . '</option>';
                    }
                    echo '</select></td>';
                    break;
                default:
                    echo '<tr><td colspan="3">' . plugin_lang_get('unknown_setting', 'EmailReporting') . $p_name . ' -> level 2</td></tr>';
            }
            echo '</tr>';
            break;
        case 'custom':
            if (function_exists($t_function_name)) {
                $t_function_name($p_name, $t_value, $p_function_parameter);
            } else {
                echo '<option class="negative">' . plugin_lang_get('function_not_found', 'EmailReporting') . ': ' . $t_function_name . '</option>';
            }
            break;
        default:
            echo '<tr><td colspan="3">' . plugin_lang_get('unknown_setting', 'EmailReporting') . $p_name . ' -> level 1</td></tr>';
    }
}
开发者ID:mikemol,项目名称:EmailReporting,代码行数:101,代码来源:config_api.php

示例10: helper_alternate_class

<tr class="spacer"><td></td><td></td><td></td></tr>
<?php 
}
?>

<tr <?php 
echo helper_alternate_class();
?>
>
<td class="category"><?php 
echo plugin_lang_get('message');
?>
</td>
<td colspan="2"><textarea name="message" cols="80" rows="8"><?php 
echo string_textarea($t_changeset->message);
?>
</textarea></td>
</tr>

<tr>
<td class="center" colspan="3"><input type="submit" value="<?php 
echo plugin_lang_get('edit');
?>
"/></td>
</tr>

</table>
</form>

<?php 
开发者ID:Sansumaki,项目名称:source-integration,代码行数:30,代码来源:edit_page.php

示例11: bug_prepare_edit

function bug_prepare_edit($p_bug_data)
{
    $p_bug_data->category = string_attribute($p_bug_data->category);
    $p_bug_data->date_submitted = string_attribute($p_bug_data->date_submitted);
    $p_bug_data->last_updated = string_attribute($p_bug_data->last_updated);
    $p_bug_data->os = string_attribute($p_bug_data->os);
    $p_bug_data->os_build = string_attribute($p_bug_data->os_build);
    $p_bug_data->platform = string_attribute($p_bug_data->platform);
    $p_bug_data->version = string_attribute($p_bug_data->version);
    $p_bug_data->build = string_attribute($p_bug_data->build);
    $p_bug_data->target_version = string_attribute($p_bug_data->target_version);
    $p_bug_data->fixed_in_version = string_attribute($p_bug_data->fixed_in_version);
    $p_bug_data->summary = string_attribute($p_bug_data->summary);
    $p_bug_data->sponsorship_total = string_attribute($p_bug_data->sponsorship_total);
    $p_bug_data->sticky = string_attribute($p_bug_data->sticky);
    $p_bug_data->description = string_textarea($p_bug_data->description);
    $p_bug_data->steps_to_reproduce = string_textarea($p_bug_data->steps_to_reproduce);
    $p_bug_data->additional_information = string_textarea($p_bug_data->additional_information);
    return $p_bug_data;
}
开发者ID:jin255ff,项目名称:company_website,代码行数:20,代码来源:bug_api.php

示例12: print_enum_string_option_list

						<?php print_enum_string_option_list( 'view_state', $row['view_state']) ?>
					</select>
				</span>
				<span class="label-style"></span>
			</div>
			<?php
			if ( file_is_uploading_enabled() ) { ?>
			<div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
				<label for="project-file-path"><span><?php echo lang_get( 'upload_file_path' ) ?></span></label>
				<span class="input"><input type="text" id="project-file-path" name="file_path" size="50" maxlength="250" value="<?php echo string_attribute( $row['file_path'] ) ?>" /></span>
				<span class="label-style"></span>
			</div><?php
			} ?>
			<div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
				<label for="project-description"><span><?php echo lang_get( 'description' ) ?></span></label>
				<span class="textarea"><textarea id="project-description" name="description" cols="60" rows="5"><?php echo string_textarea( $row['description'] ) ?></textarea></span>
				<span class="label-style"></span>
			</div>

			<?php event_signal( 'EVENT_MANAGE_PROJECT_UPDATE_FORM', array( $f_project_id ) ); ?>

			<span class="submit-button"><input type="submit" class="button" value="<?php echo lang_get( 'update_project_button' ) ?>" /></span>
		</fieldset>
	</form>
</div>

<!-- PROJECT DELETE -->
<?php
# You must have global permissions to delete projects
if ( access_has_global_level ( config_get( 'delete_project_threshold' ) ) ) { ?>
<div id="project-delete-div" class="form-container">
开发者ID:rombert,项目名称:mantisbt,代码行数:31,代码来源:manage_proj_edit_page.php

示例13: if

<?php if( $t_show_steps_to_reproduce ) { ?>
			<div class="field-container">
				<label><span><?php print_documentation_link( 'steps_to_reproduce' ) ?></span></label>
				<span class="textarea">
					<textarea <?php echo helper_get_tab_index() ?> id="steps_to_reproduce" name="steps_to_reproduce" cols="80" rows="10"><?php echo string_textarea( $f_steps_to_reproduce ) ?></textarea>
				</span>
				<span class="label-style"></span>
			</div>
<?php } ?>

<?php if( $t_show_additional_info ) { ?>
			<div class="field-container">
				<label><span><?php print_documentation_link( 'additional_information' ) ?></span></label>
				<span class="textarea">
					<textarea <?php echo helper_get_tab_index() ?> id="additional_info" name="additional_info" cols="80" rows="10"><?php echo string_textarea( $f_additional_info ) ?></textarea>
				</span>
				<span class="label-style"></span>
			</div>
<?php
	}

	$t_custom_fields_found = false;
	$t_related_custom_field_ids = custom_field_get_linked_ids( $t_project_id );

	foreach( $t_related_custom_field_ids as $t_id ) {
		$t_def = custom_field_get_definition( $t_id );
		if( ( $t_def['display_report'] || $t_def['require_report']) && custom_field_has_write_access_to_project( $t_id, $t_project_id ) ) {
			$t_custom_fields_found = true;
?>
			<div class="field-container">
开发者ID:01-Scripts,项目名称:mantisbt,代码行数:30,代码来源:bug_report_page.php

示例14: config_get

						print_user_option_list( $t_tag_row['user_id'], ALL_PROJECTS, config_get( 'tag_create_threshold' ) );
						echo '</select></span>';
					} else { ?>
						<span class="display-label"><span><?php echo lang_get( 'tag_creator' ); ?></span></span>
						<span class="display-value"><span><?php echo string_display_line( user_get_name($t_tag_row['user_id']) ); ?></span></span><?php
					} ?>
				<span class="label-style"></span>
			</div>
			<div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
				<span class="display-label"><span><?php echo lang_get( 'tag_created' ) ?></span></span>
				<span class="display-value"><span><?php echo date( config_get( 'normal_date_format' ), $t_tag_row['date_created'] ) ?></span></span>
				<span class="label-style"></span>
			</div>
			<div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
				<span class="display-label"><span><?php echo lang_get( 'tag_updated' ) ?></span></span>
				<span class="display-value"><span><?php echo date( config_get( 'normal_date_format' ), $t_tag_row['date_updated'] ) ?></span></span>
				<span class="label-style"></span>
			</div>
			<div class="field-container <?php echo helper_alternate_class_no_attribute(); ?>">
				<label for="tag-description"><span><?php echo lang_get( 'tag_description' ) ?></span></label>
				<span class="textarea"><textarea id="tag-description" name="description" <?php echo helper_get_tab_index() ?> cols="80" rows="6"><?php echo string_textarea( $t_description ) ?></textarea></span>
				<span class="label-style"></span>
			</div>
			<span class="submit-button"><input <?php echo helper_get_tab_index() ?> type="submit" class="button" value="<?php echo lang_get( 'tag_update_button' ) ?>" /></span>
		</fieldset>
	</form>
</div>

<?php
html_page_bottom();
开发者ID:rombert,项目名称:mantisbt,代码行数:30,代码来源:tag_update_page.php

示例15: access_ensure_project_level

    if (project_exists($row['project_id'])) {
        access_ensure_project_level(config_get('manage_news_threshold'), $row['project_id']);
    }
    helper_ensure_confirmed(lang_get('delete_news_sure_msg'), lang_get('delete_news_item_button'));
    news_delete($f_news_id);
    form_security_purge('news_delete');
    print_header_redirect('news_menu_page.php', true);
}
# Retrieve news item data and prefix with v_
$row = news_get_row($f_news_id);
if ($row) {
    extract($row, EXTR_PREFIX_ALL, 'v');
}
access_ensure_project_level(config_get('manage_news_threshold'), $v_project_id);
$v_headline = string_attribute($v_headline);
$v_body = string_textarea($v_body);
html_page_top(lang_get('edit_news_title'));
# Edit News Form BEGIN
?>
<br />
<div align="center">
<form method="post" action="news_update.php">
<?php 
echo form_security_field('news_update');
?>
<table class="width75" cellspacing="1">
<tr>
	<td class="form-title">
		<input type="hidden" name="news_id" value="<?php 
echo $v_id;
?>
开发者ID:Tarendai,项目名称:spring-website,代码行数:31,代码来源:news_edit_page.php


注:本文中的string_textarea函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。