function form($objectName, $object, $options = array()) { if (!isset($options['action'])) { if ($object->isNewRecord()) { $options['action'] = 'create'; } else { $options['action'] = 'update'; } } if (!isset($options['submit_value'])) { $options['submit_value'] = ucfirst($options['action']); } if (isset($options['multipart']) && $options['multipart'] === true) { $form = form_tag(array('action' => $options['action']), array('multipart' => true)); } else { $form = form_tag(array('action' => $options['action'])); } if (!$object->isNewRecord()) { $form .= hidden_field($objectName, 'id', $object); } $fields = $object->contentAttributes(); foreach ($fields as $attr) { $form .= '<p><label for="' . $objectName . '_' . $attr->name . '">' . SInflection::humanize($attr->name) . "</label>\n" . input($objectName, $attr->name, $object) . "</p>\n"; } if (isset($options['include'])) { $form .= $options['include']; } $form .= submit_tag($options['submit_value']); $form .= end_form_tag(); return $form; }
function sf_simple_cms_slot($page, $slot, $default_text = null, $default_type = 'Text') { $context = sfContext::getInstance(); $request = $context->getRequest(); $culture = $request->getAttribute('culture'); $slot_object = $page->getSlot($slot, constant(sfConfig::get('app_sfSimpleCMS_escaping_strategy', 'ESC_RAW'))); if (!$slot_object) { $slot_object = new sfSimpleCMSSlot(); $slot_object->setType($default_type); $slot_object->setCulture($culture); } $slot_value = $slot_object->getValue(); $slot_type_name = $slot_object->getType(); $slot_type_class = 'sfSimpleCMSSlot' . $slot_type_name; $slot_type = new $slot_type_class(); if ($request->getParameter('edit') == 'true' && !$request->getParameter('preview')) { echo '<div class="editable_slot" title="' . __('Double-click to edit') . '" id="slot_' . $slot . '" onDblClick="Element.show(\'edit_' . $slot . '\');Element.hide(\'slot_' . $slot . '\');">'; if ($slot_value) { // Get slot value from the slot type object echo $slot_type->getSlotValue($slot_object); } else { // default text echo $default_text ? $default_text : sfConfig::get('app_sfSimpleCMS_default_text', __('[add text here]')); } echo '</div>'; echo form_remote_tag(array('url' => 'sfSimpleCMS/updateSlot', 'script' => 'true', 'update' => 'slot_' . $slot, 'success' => 'Element.show(\'slot_' . $slot . '\'); Element.hide(\'edit_' . $slot . '\'); ' . visual_effect('highlight', 'slot_' . $slot)), array('class' => 'edit_slot', 'id' => 'edit_' . $slot, 'style' => 'display:none')); echo input_hidden_tag('slug', $page->getSlug(), 'id=edit_path' . $slot); echo input_hidden_tag('slot', $slot); if (sfConfig::get('app_sfSimpleCMS_use_l10n', false)) { echo input_hidden_tag('sf_culture', $slot_object->getCulture()); } // Get slot editor from the slot type object echo $slot_type->getSlotEditor($slot_object); echo label_for('slot_type', __('Type: ')); echo select_tag('slot_type', options_for_select(sfConfig::get('app_sfSimpleCMS_slot_types', array('Text' => __('Simple Text'), 'RichText' => __('Rich text'), 'Php' => __('PHP code'), 'Image' => __('Image'), 'Modular' => __('List of partials/components'))), $slot_type_name)); if ($rich = sfConfig::get('app_sfSimpleCMS_rich_editing', false)) { // activate rich text if global rich_editing is true and is the current slot is RichText $rich = $slot_type_name == 'RichText'; } echo submit_tag('update', array('onclick' => $rich ? 'tinymceDeactivate()' . ';submitForm(\'edit_' . $slot . '\'); return false' : '', 'class' => 'submit_tag')); echo button_to_function('cancel', 'Element.hide(\'edit_' . $slot . '\');Element.show(\'slot_' . $slot . '\');', 'class=submit_tag'); echo '</form>'; } else { echo $slot_type->getSlotValue($slot_object); } }
?> "><?php echo $file->nombre_archivo; ?> </a> <?php echo link_to("Borrar", "legajopedagogico/borrarAdjunto?id=" . $legajopedagogico->getId() . "&ajid=" . $file->id . "&aid=" . $alumno_id); echo " "; } ?> </div> </fieldset> <ul class="sf_admin_actions"> <li><?php echo submit_tag(__('save'), array('name' => 'save', 'class' => 'sf_admin_action_save')); ?> </li> <li><?php echo button_to(__('Legajos'), 'legajopedagogico/verLegajo?aid=' . $alumno_id . '&cid=' . $legajo_categoria_id, array('class' => 'sf_admin_action_list')); ?> </li> </ul> </form> <ul class="sf_admin_actions"> <li class="float-left"><?php if ($legajopedagogico->getId()) { echo button_to(__('delete'), 'legajopedagogico/delete?id=' . $legajopedagogico->getId(), array('post' => true, 'confirm' => __('Are you sure?'), 'class' => 'sf_admin_action_delete')); }
echo submit_tag(__('Perpustakaan') . ($sf_user->getAttribute('sort_field', null, 'cir_history_list_late') == 'COL_ITEM_ID' ? $sf_user->getAttribute('sort_type', null, 'cir_history_list_late') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='COL_ITEM_ID';")); ?> </th> <th><?php echo submit_tag(__('Order Date') . ($sf_user->getAttribute('sort_field', null, 'cir_history_list_late') == 'ORDER_DATE' ? $sf_user->getAttribute('sort_type', null, 'cir_history_list_late') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='ORDER_DATE';")); ?> </th> <th><?php echo submit_tag(__('Due Date') . ($sf_user->getAttribute('sort_field', null, 'cir_history_list_late') == 'DUE_DATE' ? $sf_user->getAttribute('sort_type', null, 'cir_history_list_late') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='DUE_DATE';")); ?> </th> <th><?php echo submit_tag(__('Tanggal Penggembalian') . ($sf_user->getAttribute('sort_field', null, 'cir_history_list_late') == 'RETURN_DATE' ? $sf_user->getAttribute('sort_type', null, 'cir_history_list_late') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='RETURN_DATE';")); ?> </th> </tr> <tr class="list" id='filter' <?php if (!isset($filters)) { echo 'style=""'; } ?> > <td class='filter'><?php echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();")); ?> </td> <td class='filter_first'><?php echo input_tag('filters[CODE]', isset($filters['CODE']) ? $filters['CODE'] : null, array('size' => 12));
?> <?php echo textarea_tag('task_tags', '', array('rows' => '3')); ?> </div> <div id="task-dates" class="float-right" style="text-align:right;"> <label for="task_begin">Task Starts: <?php echo input_date_tag('task_begin', '', array('rich' => 'true')); ?> </label><br /> <label for="task_finish">Task Due: <?php echo input_date_tag('task_finish', '', array('rich' => 'true')); ?> <br /> <?php echo submit_tag('Add Task'); ?> </div> <div style="height:20px"> <p id="indicator" style="display:none"> <?php echo image_tag('indicator.gif'); ?> adding task... </p> </div> </form> </div> <div class="clear-both"> </div> </div> <?php
echo submit_tag(__('ActivityDate') . ($sf_user->getAttribute('sort_field', null, 'accal_activity') == 'START' ? $sf_user->getAttribute('sort_type', null, 'accal_activity') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='START';")); ?> </th> <th><?php echo submit_tag(__('ActivityLength') . ($sf_user->getAttribute('sort_field', null, 'accal_activity') == 'ACTIVITY_LENGTH' ? $sf_user->getAttribute('sort_type', null, 'accal_activity') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='ACTIVITY_LENGTH';")); ?> </th> <th><?php echo submit_tag(__('ActivityType') . ($sf_user->getAttribute('sort_field', null, 'accal_activity') == 'ACTIVITY_TYPE_ID' ? $sf_user->getAttribute('sort_type', null, 'accal_activity') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='ACTIVITY_TYPE_ID';")); ?> </th> <th><?php echo submit_tag(__('ActivityDetail') . ($sf_user->getAttribute('sort_field', null, 'accal_activity') == 'Detail' ? $sf_user->getAttribute('sort_type', null, 'accal_activity') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='Detail';")); ?> </th> </tr> <tr class="list" id='filter' <?php if (!isset($filters)) { echo 'style=""'; } ?> > <td class='filter'><?php echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();")); ?> </td>
<tr> <th >#</th> <th class='first'><?php echo submit_tag(__('Academic calendar') . ($sf_user->getAttribute('sort_field', null, 'emp_leave') == 'ACADEMIC_CALENDAR_ID' ? $sf_user->getAttribute('sort_type', null, 'emp_leave') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='ACADEMIC_CALENDAR_ID';")); ?> </th> <th><?php echo submit_tag(__('Emp no') . ($sf_user->getAttribute('sort_field', null, 'emp_leave') == 'EMP_NO' ? $sf_user->getAttribute('sort_type', null, 'emp_leave') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='EMP_NO';")); ?> </th> <th><?php echo submit_tag(__('DPLK No') . ($sf_user->getAttribute('sort_field', null, 'emp_leave') == 'EXTRA_CODE' ? $sf_user->getAttribute('sort_type', null, 'emp_leave') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='EXTRA_CODE';")); ?> </th> <th><?php echo submit_tag(__('Name') . ($sf_user->getAttribute('sort_field', null, 'emp_leave') == 'EMP_NAME' ? $sf_user->getAttribute('sort_type', null, 'emp_leave') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='EMP_NAME';")); ?> </th> <th rowspan="2" style="text-align: center; vertical-align: middle;"><?php echo __('Total Leave'); ?> </th> <th rowspan="2" style="text-align: center; vertical-align: middle;"><?php echo __('Leave Used'); ?> </th> <th rowspan="2" style="text-align: center; vertical-align: middle;"><?php echo __('Leave Rest'); ?> </th> </tr>
echo image_tag('star.png', array('alt' => '*')); ?> i campi contrassegnati da asterisco sono obbligatori</p> <?php echo form_error('text'); ?> <p><label for="text">scrivi qui sotto il tuo commento</label><br/> <?php echo textarea_tag('text', $sf_request->hasErrors() ? $sf_params->get('text') : '', 'id=comment_text size=60x10'); ?> </p> <p><?php echo image_tag('arrow_mid.png', array('alt' => '>', 'align' => 'absmiddle')); echo submit_tag('INVIA', array('class' => 'btn-submit')); ?> </p> </form> <?php if (sfConfig::get('app_comments_use_ajax', true)) { ?> <script type="text/javascript" language="javascript"> //<![CDATA[ $('comment-form').onsubmit = function () { new Ajax.Updater( 'comments-block', $('comment-form').action, { parameters: Form.serialize(this), evalScripts: true, encoding: 'UTF-8' }
<div class="row"> <?php echo form_error('login'); ?> <label for="login">Login: </label> <?php echo input_tag('login'); ?> </div> <div class="row"> <?php echo form_error('password'); ?> <label for="password">Hasło: </label> <?php echo input_password_tag('password'); ?> </div> </fieldset> <?php echo submit_tag('Dalej', array('class' => 'submit')); ?> <?php echo button_to('Powrót', $sf_request->getReferer(), array('class' => 'submit')); ?> </form> <?php include_partial('global/page_footer');
echo __('nickname:'); ?> </label><?php echo input_tag('nickname'); ?> <label for="password"><?php echo __('password:'******'password'); ?> <?php echo input_hidden_tag('referer', $sf_params->get('referer') ? $sf_params->get('referer') : $sf_request->getUri()); ?> <?php echo submit_tag(__('login')); ?> <?php echo link_to_function(__('cancel'), visual_effect('blind_up', 'login', array('duration' => 0.5))); ?> </form> </div> <div id="content"> <div id="content_main"> <?php echo $content; ?> <div class="verticalalign"></div> </div>
echo submit_tag(__('Curriculum') . ($sf_user->getAttribute('sort_field', null, 'student') == 'CURRICULUM_ID' ? $sf_user->getAttribute('sort_type', null, 'student') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='CURRICULUM_ID';")); ?> </th> <th><?php echo submit_tag(__('Academic calendar') . ($sf_user->getAttribute('sort_field', null, 'student') == 'ACADEMIC_CALENDAR_ID' ? $sf_user->getAttribute('sort_type', null, 'student') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='ACADEMIC_CALENDAR_ID';")); ?> </th> <th><?php echo submit_tag(__('Class group') . ($sf_user->getAttribute('sort_field', null, 'student') == 'CLASS_GROUP_ID' ? $sf_user->getAttribute('sort_type', null, 'student') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='CLASS_GROUP_ID';")); ?> </th> <th><?php echo submit_tag(__('Status') . ($sf_user->getAttribute('sort_field', null, 'student') == 'STATUS' ? $sf_user->getAttribute('sort_type', null, 'student') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='STATUS';")); ?> </th> </tr> <tr class="list" id='filter' <?php if (!isset($filters)) { echo 'style="display:none;"'; } ?> > <td class='filter'><?php echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();")); ?> </td>
<div><?php echo __("Search By"); ?> <?php echo select_tag('ssSearchOption', options_for_select($oAppCommon->aSearchOptions, $sf_params->get('ssSearchOption')), array('tabindex' => 2)); ?> </div> <div class="searchinput"><?php echo __('Search For'); ?> <?php echo input_tag('ssSearchWord', trim($sf_params->get('ssSearchWord')), array('size' => '20', 'maxlength' => '100', 'tabindex' => 1)); ?> </div> <div class="menu padding0"><?php echo submit_tag(__('Search'), array('title' => __('Search'), 'tabindex' => 1)); ?> </div> <div class="menu padding0"><?php echo link_to(__('Show All'), $oAppCommon->ssLink, array('title' => __('Show All'), 'tabindex' => 1)); ?> </form> </div> <div> </td> </tr> </table> <?php echo jq_form_remote_tag(array('update' => $oAppCommon->ssDivId, 'url' => $oAppCommon->ssLink), array('name' => 'frmList', 'id' => 'frmList', 'method' => 'post', 'class' => 'fright')); echo input_hidden_tag('ssSortOn', $oAppCommon->ssSortOn); echo input_hidden_tag('ssSortBy', $oAppCommon->ssSortBy);
</th> <th> <?php echo submit_tag(__('Class group') . ($sf_user->getAttribute('sort_field', null, 'counseling') == 'CLASS_GROUP_ID' ? $sf_user->getAttribute('sort_type', null, 'counseling') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='CLASS_GROUP_ID';")); ?> </th> <th rowspan="2" style="vertical-align: middle;"><?php echo __('Wali Kelas'); ?> </th> <th rowspan="2" style="vertical-align: middle;"> <?php echo submit_tag(__('Jumlah Siswa') . ($sf_user->getAttribute('sort_field', null, 'counseling') == 'STUDENT_COUNT' ? $sf_user->getAttribute('sort_type', null, 'counseling') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='STUDENT_COUNT';")); ?> </th> <th style="vertical-align: middle; text-align: center;" colspan="2"><?php echo __('Rekap UTS'); ?> </th> <th style="vertical-align: middle; text-align: center;" colspan="2"><?php echo __('Rekap UAS'); ?> </th> <th style="vertical-align: middle; text-align: center;" colspan="2"><?php echo __('Administrasi Ledger'); ?> </th>
</div> <ul class="sf_admin_actions" style='margin-left:240px'> <li class="sf_admin_action"> <?php echo submit_tag('Save Settings'); ?> </li> </ul> </form> <div>
echo __('Sesi Kelas'); ?> </th> <th><?php echo submit_tag(__('Class group') . ($sf_user->getAttribute('sort_field', null, 'course_schedule') == 'CLASS_GROUP_ID' ? $sf_user->getAttribute('sort_type', null, 'course_schedule') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='CLASS_GROUP_ID';")); ?> </th> <th><?php echo submit_tag(__('Kegiatan Harian') . ($sf_user->getAttribute('sort_field', null, 'course_schedule') == 'SUBJECT_ID' ? $sf_user->getAttribute('sort_type', null, 'course_schedule') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='SUBJECT_ID';")); ?> </th> <th><?php echo submit_tag(__('Lector') . ($sf_user->getAttribute('sort_field', null, 'course_schedule') == 'EMPLOYEE_ID' ? $sf_user->getAttribute('sort_type', null, 'course_schedule') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='EMPLOYEE_ID';")); ?> </th> </tr> <tr class="list" id='filter' <?php if (!isset($filters)) { echo 'style=""'; } ?> > <td class='filter' style="vertical-align: middle; text-align: center;"><?php echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();")); ?> </td> <td class='filter_first'><?php
?> :<br /> <?php echo ucwords(__('subject')); ?> : </li> <li> <?php if ($message->getRecipientId()) { echo '<em>(' . $message->getSfGuardUserRelatedByRecipientId()->getProfile()->getFullName() . ')</em><br />' . input_hidden_tag('user_recipient', $message->getSfGuardUserRelatedByRecipientId()->getProfile()->getFullName()); } else { echo input_auto_complete_tag('user_recipient', '', 'user/autoMessageComplete?field=recipient', 'autocomplete=false', 'use_style=true') . '<br />'; } ?> <?php echo object_input_tag($message, 'getSubject', array('style' => 'width:100%;')); ?> </li> </ul> <hr class="clear" /> <?php echo object_textarea_tag($message, 'getBody', array('style' => 'width:100%;', 'rows' => '10')); ?> <?php echo submit_tag(ucwords(__('send')), array('class' => 'pswipebutton')); ?> </div> </form> </div> </div>
Assigning users... </p> </div> <div id="task-status-holder"> <?php echo form_remote_tag(array('update' => 'task-' . $task->getUuid() . '-holder', 'url' => 'project/ajaxSetTaskStatus', 'loading' => "Element.show('indicator-" . $task->getUuid() . "-status')", 'complete' => "Element.hide('indicator-" . $task->getUuid() . "-status');" . visual_effect('highlight', 'task-' . $task->getUuid()))); ?> <?php echo input_hidden_tag('task', $task->getUuid(), array()); ?> <?php echo select_tag('task-status', options_for_select(array('2' => 'Pending/In Planning', '1' => 'In Progress', '0' => 'Complete'), $task->getStatus())); ?> <?php echo submit_tag('go', array()); ?> </form> </div> <div style="height:20px"> <p id="indicator-<?php echo $task->getUuid(); ?> -status" style="display:none"> <?php echo image_tag('indicator.gif'); ?> Settings task status... </p> </div> </div>
echo label_tag('uri', 'or Uri: ') . text_field_tag('uri', 'http://www.dajobe.org/foaf.rdf', array('size' => 80)); ?> <br /> <?php echo label_tag('input_format', 'Input Format: ') . select_tag('input_format', $input_format_options, 'guess'); ?> <br /> <?php echo label_tag('output_format', 'Output Format: ') . select_tag('output_format', $output_format_options, 'turtle'); ?> <br /> <?php echo reset_tag(); ?> <?php echo submit_tag(); ?> <?php echo form_end_tag(); ?> </div> <?php if (isset($_REQUEST['uri']) or isset($_REQUEST['data'])) { $graph = new EasyRdf_Graph($_REQUEST['uri']); if (empty($_REQUEST['data'])) { $graph->load(); } else { $graph->parse($_REQUEST['data'], $_REQUEST['input_format'], $_REQUEST['uri']); } $output = $graph->serialise($_REQUEST['output_format']);
} ?> <table class="list_content"> <thead> <tr> <th >#</th> <th><?php echo submit_tag(__('Name') . ($sf_user->getAttribute('sort_field', null, 'ng_reg_detail') == 'NAME' ? $sf_user->getAttribute('sort_type', null, 'ng_reg_detail') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='NAME';")); ?> </th> <th><?php echo submit_tag(__('Start') . ($sf_user->getAttribute('sort_field', null, 'ng_reg_detail') == 'START' ? $sf_user->getAttribute('sort_type', null, 'ng_reg_detail') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='START';")); ?> </th> <th><?php echo submit_tag(__('End') . ($sf_user->getAttribute('sort_field', null, 'ng_reg_detail') == 'END' ? $sf_user->getAttribute('sort_type', null, 'ng_reg_detail') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='END';")); ?> </th> </tr> <tr class="list" id='filter' <?php if (!isset($filters)) { echo 'style=""'; } ?> > <td class='filter'><?php echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();")); ?> </td> <td class='filter'><?php echo input_tag('filters[NAME]', isset($filters['NAME']) ? $filters['NAME'] : null, array('size' => 15));
echo form_remote_tag(array('url' => 'subject_competency/getSubject?dept_id=' . $department->getId() . '&subject_curr_id=' . $subject_curr->getId(), 'update' => 'subject_list', 'script' => 'true', 'before' => "this.blur();showIndicator('subject_list', 'snakebig_black');", 'complete' => "hideIndicator()"), 'name=course_list'); echo input_hidden_tag('sort'); ?> <table class="list"> <tr><td class="list" width="100%"> <?php if ($pager->getNbResults() > 1) { echo include_partial('global/pager', array('position' => 'top', 'pager' => $pager, 'module' => 'SubjectCurr')); } ?> <table class="list_content" width="100%"> <thead> <tr> <th >#</th> <th class='first' colspan="2"><?php echo submit_tag(__('Standar Kompetensi') . ($sf_user->getAttribute('sort_field', null, 'subject_grading') == 'DETAIL' ? $sf_user->getAttribute('sort_type', null, 'subject_grading') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='DETAIL';")); ?> </th> <th style="text-align: center; vertical-align:middle;" rowspan="2"><?php echo __('Sub Subject Competency'); ?> </th> </tr> <tr class="list" id='filter' <?php if (!isset($filters)) { echo 'style=""'; } ?> > <td class='filter'><?php echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();"));
echo Constant::PASSWORD_MIMIMUM_LENGTH; ?> , tooShortMessage : "<?php echo Constant::PASSWORD_MINIMUM_LENGTH_ERROR; ?> " } );</script> </td> </tr> <tr> <td> </td> <td colspan="2"> <table width="100%" align="left" border="0" class="form"> <tr> <td width="2%"><?php echo submit_tag(' ', array('class' => 'btn_update', 'style' => 'border:none')); ?> </td> <td width="98%"><?php echo link_to(' ', isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : 'Home/index', array('class' => 'btn_cancel')); ?> </td> </tr> </table> </td> </tr> </table> </div> </div>
<?php include_partial('global/formerrors', array('form' => array($address_form, $reference_form))); ?> <form action="<?php echo url_for('entity/editAddress'); ?> " method="POST"> <?php echo input_hidden_tag('id', $address->id); ?> <table> <?php include_partial('reference/required', array('form' => $reference_form)); ?> <?php include_partial('global/form', array('form' => $address_form)); ?> <td></td> <td> <?php echo submit_tag('Save'); ?> <?php echo button_to('Cancel', 'entity/address?id=' . $address->id); ?> </table> </form>
<input type="checkbox" value="1" name="model[Reference]"> Reference <input type="checkbox" value="1" name="model[Entity]">Entity <input type="checkbox" value="1" name="model[Relationship]">Relationship <input type="checkbox" value="1" name="model[Address]"> Address <input type="checkbox" value="1" name="model[Image]"> Image <br /> <br /> <input type="checkbox" value="1" name="is_delete"> Is delete? <input type="checkbox" value="1" name="is_create"> Is create? <input type="checkbox" value="1" name="distinct"> Distinct user Users matching <?php echo input_tag('user', $sf_request->getParameter('user')); ?> <?php echo submit_tag('Go', 'class=button_small'); ?> </form> <br /> <br /> <?php //echo link_to('show users only', 'modification/list?users_only=1') ?> <br /> <br />
echo form_tag('@request_password', array('class' => 'block')); ?> <ul> <li><span class="lbl"><?php echo label_for('username', 'Username'); ?> </span> <span class="fld medium"><?php echo input_tag('username', '', array('class' => 'textfield')); ?> </span> </li> <li><span class="lbl"></span> <span class="btn"><?php echo submit_tag('Get a new password'); ?> </span> </li> </ul> </form> <p class="small"> The new password is randomly generated, and may not be easy to remember. If you had difficulty remembering your password, consider using a <strong>pass phrase</strong> (for example "this ninja ate my password"). A pass phrase is longer to type but easier to remember and generally more secure due to its length. </p> </div> </div>
echo textarea_tag('body', '', 'id=topic_body'); ?> <?php if (!isset($topic) && $sf_user->hasCredential('moderator')) { ?> <div class="option"> <?php echo checkbox_tag('is_sticked', '1'); ?> <?php echo label_for('is_sticked', __('Sticked topic', null, 'sfSimpleForum')); ?> </div> <div class="option"> <?php echo checkbox_tag('is_locked', '1'); ?> <?php echo label_for('is_locked', __('Locked topic', null, 'sfSimpleForum')); ?> </div> <?php } ?> <?php echo submit_tag(__('Post', null, 'sfSimpleForum'), 'id=topic_submit'); ?> </form>
} ?> <?php if (!$sf_params->get('id')) { ?> <div class="row right_col"> <?php echo cryptographp_picture(); echo cryptographp_reload(); ?> </div> <div class="row"> <?php echo label_for('captcha', __('Type the code shown') . required()); ?> <?php echo input_tag('captcha', $sf_params->get('captcha')); ?> <?php echo form_error('captcha'); ?> </div> <?php } ?> <div class="row right_col"> <?php echo submit_tag(__('Save')); ?> </div> </form>
?> <div class="content"> <?php $id_empresa = isset($filters['id_empresa']) ? $filters['id_empresa'] : null; $c = EmpresaPeer::getCriterioAlcance(); $empresas = EmpresaPeer::doSelect($c); $value = select_empresas('filters[id_empresa]', objects_for_select($empresas, 'getIdEmpresa', '__toString', $id_empresa, array('include_blank' => true)), array('control_name' => 'filters[id_empresa]', 'include_blank' => true)); echo $value ? $value : " "; ?> </div> </div> </fieldset> <ul class="sf_admin_actions"> <li><?php echo button_to(__('reset'), 'tablas/list?filter=filter', 'class=sf_admin_action_reset_filter'); ?> </li> <li><?php echo submit_tag(__('filter'), 'name=filter class=sf_admin_action_filter'); ?> </li> </ul> </form> --> </div>
echo submit_tag(__('Subject') . ($sf_user->getAttribute('sort_field', null, 'subject_curr') == 'SUBJECT_CODE' ? $sf_user->getAttribute('sort_type', null, 'subject_curr') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='SUBJECT_CODE';")); ?> </th> <th class='first'><?php echo submit_tag(__('Subject') . ($sf_user->getAttribute('sort_field', null, 'subject_curr') == 'SUBJECT_NAME' ? $sf_user->getAttribute('sort_type', null, 'subject_curr') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='SUBJECT_NAME';")); ?> </th> <th><?php echo submit_tag(__('Credit') . ($sf_user->getAttribute('sort_field', null, 'subject_curr') == 'CREDIT' ? $sf_user->getAttribute('sort_type', null, 'subject_curr') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='CREDIT';")); ?> </th> <th><?php echo submit_tag(__('Subject group') . ($sf_user->getAttribute('sort_field', null, 'subject_curr') == 'SUBJECT_GROUP_ID' ? $sf_user->getAttribute('sort_type', null, 'subject_curr') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='SUBJECT_GROUP_ID';")); ?> </th> </tr> <tr class="list" id='filter' <?php if (!isset($filters)) { echo 'style=""'; } ?> > <td class='filter'><?php echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();")); ?> </td> <td class='filter_first'>
<span> <?php echo label_for('user_name', 'Name'), input_auto_complete_tag('user_name', '', 'user/autoMessageComplete?field=name', 'autocomplete=false', 'use_style=true'); ?> </span> <?php /* <span> <label for="campus">campus: <?php echo select_tag('user_campus', objects_for_select(CampusPeer::doSelect(new Criteria()), 'getId', 'getName', '', array('include_blank'=>true)), array('class'=>'xxx')) ?></label> <label for="department">department: <?php echo select_tag('user_department', objects_for_select(DepartmentPeer::doSelect(new Criteria()), 'getId', 'getName', '', array('include_blank'=>true)), array('class'=>'xxx')) ?></label> </span> */ ?> <span id="update_button"> <?php echo submit_tag('Search', array()); ?> </span> <div style="height:20px;display:inline;"> <p id="form-search-indicator" style="display:none"> <?php echo image_tag('indicator.gif'); ?> Searching users... </p> </div> </fieldset> </form> </div> </div> </div>
?> </th> <th><?php echo submit_tag(__('Name') . ($sf_user->getAttribute('sort_field', null, 'subject_l') == 'NAME' ? $sf_user->getAttribute('sort_type', null, 'subject_l') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='NAME';")); ?> </th> <th><?php echo submit_tag(__('Credit') . ($sf_user->getAttribute('sort_field', null, 'subject_l') == 'CREDIT' ? $sf_user->getAttribute('sort_type', null, 'subject_l') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='CREDIT';")); ?> </th> <th><?php echo submit_tag(__('Subject group') . ($sf_user->getAttribute('sort_field', null, 'subject_l') == 'SUBJECT_GROUP_ID' ? $sf_user->getAttribute('sort_type', null, 'subject_l') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='SUBJECT_GROUP_ID';")); ?> </th> <th><?php echo submit_tag(__('Department') . ($sf_user->getAttribute('sort_field', null, 'subject_l') == 'DEPARTMENT_ID' ? $sf_user->getAttribute('sort_type', null, 'subject_l') == 'asc' ? ' ↓' : ' ↑' : ''), array('class' => 'sort', 'onclick' => "blur();sort.value='DEPARTMENT_ID';")); ?> </th> </tr> <tr class="list" id='filter' <?php if (!isset($filters)) { echo 'style="display:none;"'; } ?> > <td class='filter'><?php echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();")); ?> </td> <td class='filter_first'><?php echo input_tag('filters[CODE]', isset($filters['CODE']) ? $filters['CODE'] : null, array('size' => 15));