Ejemplo n.º 1
0
print '<br/>';
print '<span>';
print '<a href="#" id="add_new_category">' . Kohana::lang('ui_main.add') . '</a>';
print '</span>';
?>
 
                                </div>

			                    <div class="report_category">
                        	    <?php 
$selected_categories = array();
if (!empty($form['incident_category']) && is_array($form['incident_category'])) {
    $selected_categories = $form['incident_category'];
}
$columns = 2;
echo category::tree($categories, $selected_categories, 'incident_category', $columns);
?>
			                       								</div>
							</div>
							
							<div id="custom_forms">
								<?php 
foreach ($disp_custom_fields as $field_id => $field_property) {
    echo "<div class=\"row\">";
    echo "<h4>" . $field_property['field_name'] . "</h4>";
    if ($field_property['field_type'] == 1) {
        // Text Field
        // Is this a date field?
        if ($field_property['field_isdate'] == 1) {
            echo form::input('custom_field[' . $field_id . ']', $form['custom_field'][$field_id], ' id="custom_field_' . $field_id . '" class="text"');
            echo '<script type="text/javascript">
Ejemplo n.º 2
0
								<?php 
echo form::textarea('action_email_body', '');
?>
							</div>

							<div class="tab_form_item" id="action_form_add_category" style="margin-right:75px;">
								<h4><a href="#" class="tooltip" title="<?php 
echo htmlspecialchars(Kohana::lang("tooltips.actions.add_to_category"));
?>
"><?php 
echo Kohana::lang('ui_admin.add_to_category');
?>
:</a></h4>
								<?php 
// categories, selected_categories, form field name, number of columns
echo category::tree($categories, FALSE, array(), 'action_add_category', 2);
?>
							</div>

							<div class="tab_form_item" id="action_form_report_title" style="margin-right:75px;">
								<h4><a href="#" class="tooltip" title="<?php 
echo htmlspecialchars(Kohana::lang("tooltips.actions.report_title"));
?>
"><?php 
echo Kohana::lang('ui_admin.report_title');
?>
:</a></h4>
								<?php 
echo form::input('action_report_title', '');
?>
							</div>
Ejemplo n.º 3
0
</h2>
		
		<div style="clear: left; width: 100%; float: left;">
			<input type="checkbox" id="category_all" name="category_all" onclick="CheckAll(this.id, 'category')"/><strong><?php 
echo utf8::strtoupper(Kohana::lang('ui_main.select_all'));
?>
</strong>
		</div>
		<?php 
$selected_categories = (!empty($form['incident_category']) and is_array($form['incident_category'])) ? $selected_categories = $form['incident_category'] : array();
if (method_exists('category', 'form_tree')) {
    echo category::form_tree('category', $selected_categories, 2, TRUE);
} elseif (Kohana::config('settings.ushahidi_version') >= 2.4 and Kohana::config('settings.ushahidi_version') <= 2.5) {
    echo category::tree(ORM::factory('category')->find_all(), TRUE, $selected_categories, 'category', 2, TRUE);
} elseif (Kohana::config('settings.ushahidi_version') < 2.4) {
    echo category::tree(ORM::factory('category')->find_all(), $selected_categories, 'category', 2, TRUE);
}
?>
	</div>
	<div>
		<!-- JP: Reformated the layout. -->
		<table style="width: 100%; clear: both;">
			<tr>
				<td style="width: 50%">
					<h2><?php 
echo Kohana::lang('ui_main.verification');
?>
</h2>
					<table>
						<tr>
							<td>
Ejemplo n.º 4
0
?>
</span>
						</div>
					</div>
				</div>
				<div class="step-3">
					<h2><?php 
echo Kohana::lang('ui_main.alerts_step3_select_catgories');
?>
</h2>
					<div class="holder">
						<div class="box">
							<div class="report_category" id="categories">
							<?php 
$selected_categories = (!empty($form['alert_category']) and is_array($form['alert_category'])) ? $selected_categories = $form['alert_category'] : array();
echo category::tree($categories, $selected_categories, 'alert_category', 2, TRUE);
?>
							</div>
						</div>
					</div>
				</div>
				<input id="btn-send-alerts" class="btn_submit" type="submit" value="<?php 
echo Kohana::lang('ui_main.alerts_btn_send');
?>
" />
				<BR /><BR />
				<a href="<?php 
echo url::site() . "alerts/confirm";
?>
"><?php 
echo Kohana::lang('ui_main.alert_confirm_previous');
Ejemplo n.º 5
0
)</small>
						<?php 
}
?>
					</div>
					<div style="clear:both; display:block;" id="incident_date_time"></div>
				</div>
				<div class="report_row">
					<h4><?php 
echo Kohana::lang('ui_main.reports_categories');
?>
 <span class="required">*</span></h4>
					<div class="report_category" id="categories">
					<?php 
$selected_categories = (!empty($form['incident_category']) and is_array($form['incident_category'])) ? $selected_categories = $form['incident_category'] : array();
echo category::tree($categories, TRUE, $selected_categories, 'incident_category', 2);
?>
					</div>
				</div>


				<?php 
// Action::report_form - Runs right after the report categories
Event::run('ushahidi_action.report_form');
?>

				<?php 
echo $custom_forms;
?>

				<div class="report_optional">