function input_asset_tag($name, $value, $options = array())
{
    use_helper('Javascript', 'I18N');
    $type = 'all';
    if (isset($options['images_only'])) {
        $type = 'image';
        unset($options['images_only']);
    }
    $form_name = 'this.previousSibling.previousSibling.form.name';
    if (isset($options['form_name'])) {
        $form_name = '\'' . $options['form_name'] . '\'';
        unset($options['form_name']);
    }
    $html = '';
    if (is_file(sfConfig::get('sf_web_dir') . $value)) {
        $ext = substr($value, strpos($value, '.') - strlen($value) + 1);
        if (in_array($ext, array('png', 'jpg', 'gif'))) {
            $image_path = $value;
        } else {
            if (!is_file(sfConfig::get('sf_plugins_dir') . '/sfMediaLibraryPlugin/web/images/' . $ext . '.png')) {
                $ext = 'unknown';
            }
            $image_path = '/sfMediaLibraryPlugin/images/' . $ext;
        }
        $html .= link_to_function(image_tag($image_path, array('alt' => 'File', 'height' => '64')), "window.open('{$value}')");
        $html .= '<br />';
    }
    $html .= input_tag($name, $value, $options);
    $html .= '&nbsp;' . image_tag('/sfMediaLibraryPlugin/images/folder_open', array('alt' => __('Insert Image'), 'style' => 'cursor: pointer; vertical-align: middle', 'onclick' => 'sfMediaLibrary.openWindow({ form_name: ' . $form_name . ', field_name: \'' . $name . '\', type: \'' . $type . '\', scrollbars: \'yes\' })'));
    $html .= init_media_library();
    return $html;
}
 public function render()
 {
     $metaTitle = $this->metatag != null ? $this->metatag->getMetaTitle() : '';
     $metaKeywords = $this->metatag != null ? $this->metatag->getMetaKeywords() : '';
     $metaDescription = $this->metatag != null ? $this->metatag->getMetaDescription() : '';
     return sprintf($this->skeleton, label_for('meta_title', __('Title:')), input_tag('w3s_meta_title', $metaTitle, 'size=34'), label_for('meta_meta_keywords', __('Keywords:')), textarea_tag('w3s_meta_keywords', $metaKeywords, 'size=31x10'), label_for('meta_meta_description', __('Description:')), textarea_tag('w3s_meta_description', $metaDescription, 'size=31x10'), link_to_function(__('Store metatags'), 'currentTab.save()', 'class="link_button"'));
 }
function geocode_auto_complete($name, $service)
{
    $mobile_version = c2cTools::mobileVersion();
    $service_class = $service === 'nominatim' ? ' nominatim' : ' geonames';
    $out = input_tag($name, '', array('class' => 'geocode_auto_complete' . $service_class, 'placeholder' => __('enter place name'), 'data-noresult' => __('no results')));
    if ($mobile_version) {
        $out .= content_tag('span', '<br />' . __('autocomplete_help'), array('class' => 'mobile_auto_complete_background'));
        $out .= content_tag('span', 'X', array('class' => 'mobile_auto_complete_escape'));
    }
    // following script will automatically intanciate geocode autocompleter
    $out .= javascript_queue('$.ajax({
      url: "' . minify_get_combined_files_url('/static/js/geocode_autocompleter.js') . '",
      dataType: "script",
      cache: true});');
    return $out;
}
 /**
  * Renders the editor
  * 
  * @return string
  *
  */
 public function render()
 {
     $idLanguage = 0;
     $isMain = 0;
     $languageName = '';
     if ($this->language != null) {
         $idLanguage = $this->language->getId();
         $isMain = $this->language->getMainLanguage();
         $languageName = $this->language->getLanguage();
     }
     $setEnabled = $idLanguage == 0 || $idLanguage != 0 && $isMain == 0 ? '' : 'DISABLED';
     $function = $idLanguage == 0 ? link_to_function(__('Add Language'), 'W3sLanguage.add()', 'class="link_button"') : link_to_function(__('Edit Language'), 'W3sLanguage.edit()', 'class="link_button"');
     $additionalInfo = $idLanguage == 0 ? '<div id="w3s_message"><p class="error_message">' . __('PAY ATTENTION: This operation will also insert all contents for the new language. These contents will be copied from the main language of your website.') . '</p></div>' : '';
     $checked = $isMain == 1 ? 'CHECKED' : '';
     return sprintf($this->editorSkeleton, label_for('language_name', __('Language name:')), input_tag('w3s_language_name', $languageName), label_for('main_language', __('Main language:')), sprintf('<input name="w3s_main_language" id="w3s_main_language" %s type="checkbox" %s />', $setEnabled, $checked), $function, $additionalInfo);
 }
Example #5
0
function backend_input($name, $input = null, $options = array(), $methode = null)
{
    $code = getDivLabel($options, $name);
    if ($options['validate']) {
        $errSpan = "<span id='" . $name . "Error'></span>";
    }
    if ($options['password']) {
        $code .= input_password_tag($name, getVal($input, $methode, $name), clearOptions($options));
    } else {
        $code .= input_tag($name, getVal($input, $methode, $name), clearOptions($options));
    }
    if ($name == "attrRewriteUrl") {
        $code .= ' <img align="absbottom" src="/images/btn_generate.gif" onClick="generateUrl(\'attrRewriteUrl\', \'attrLabel\');"/>';
    }
    $code .= $errSpan;
    return $code;
}
function input_sf_asset_tag($name, $value, $options = array())
{
    use_helper('Form', 'I18N');
    use_javascript('/sfDoctrineAssetsLibraryPlugin/js/main', 'last');
    $options = _convert_options($options);
    $type = 'all';
    if (isset($options['images_only'])) {
        $type = 'image';
        unset($options['images_only']);
    }
    if (!isset($options['id'])) {
        $options['id'] = get_id_from_name($name);
    }
    $form_name = 'this.previousSibling.previousSibling.form.name';
    if (isset($options['form_name'])) {
        $form_name = "'" . $options['form_name'] . "'";
        unset($options['form_name']);
    }
    // The popup should open in the currently selected subdirectory
    $html = input_tag($name, $value, $options) . '&nbsp;';
    $html .= image_tag('/sfDoctrineAssetsLibraryPlugin/images/folder_open', array('alt' => __('Insert Image'), 'style' => 'cursor: pointer; vertical-align: middle', 'onclick' => "\n      initialDir = document.getElementById('" . $options['id'] . "').value.replace(/\\/[^\\/]*\$/, '');\n      if(!initialDir) initialDir = '" . sfConfig::get('app_sfDoctrineAssetsLibrary_upload_dir', 'media') . "';\n      sfAssetsLibrary.openWindow({\n        form_name: " . $form_name . ",\n        field_name: '" . $name . "',\n        type: '" . $type . "',\n        url: '" . url_for('sfAsset/list?dir=PLACEHOLDER') . "?popup=2'.replace('PLACEHOLDER', initialDir),\n        scrollbars: 'yes'\n      });"));
    return $html;
}
Example #7
0
?>
</td>
                    		<td class='filter_first'><?php 
echo input_tag('filters[CODE]', isset($filters['CODE']) ? $filters['CODE'] : null, array('size' => 12));
?>
</td>
		 		<td class='filter'><?php 
echo input_tag('filters[NAME]', isset($filters['NAME']) ? $filters['NAME'] : null, array('size' => 20));
?>
</td>
				<td class='filter'><?php 
echo input_tag('filters[index]', isset($filters['index']) ? $filters['index'] : null, array('size' => 15));
?>
</td>
				<td class='filter'><?php 
echo input_tag('filters[TITLE]', isset($filters['TITLE']) ? $filters['index'] : null, array('size' => 35));
?>
</td>

				<td class='filter'>
				<?php 
echo object_select_tag(isset($filters['department_id']) ? $filters['department_id'] : null, null, array('include_blank' => true, 'related_class' => 'VDepartment', 'text_method' => '__toString', 'peer_method' => 'doSelectFiltered', 'control_name' => 'filters[department_id]', 'style' => "width: 80px;"));
?>
</td>

				<td class='filter'>
				<?php 
echo input_date_range_tag('filters[ORDER_DATE]', isset($filters['ORDER_DATE']) ? $filters['ORDER_DATE'] : null, array('rich' => true, 'withtime' => false, 'calendar_button_img' => '/images/calendar.gif', 'middle' => '<br/>'));
?>
</td>
?>
    <?php 
if ($sf_user->isAuthenticated() && $project->hasPermission('create-task')) {
    ?>
    
    <div id="task-new-holder">
      <div>
        <?php 
    echo form_remote_tag(array('update' => 'edit-tasks-holder', 'url' => 'project/ajaxAddTask'));
    ?>
          <div id="task-details" class="float-left" style="vertical-align:top;">
            <?php 
    echo input_hidden_tag('project', $project->getUuid(), array());
    ?>
            <?php 
    echo input_tag('task_name', 'Task Name');
    ?>
            <?php 
    echo textarea_tag('task_description', 'Task Description', array('rows' => '3'));
    ?>
            <?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'));
Example #9
0
?>
 
<br />
<br />
<input type="checkbox" value="1" name="model[Reference]"> Reference&nbsp;&nbsp;
<input type="checkbox" value="1" name="model[Entity]">Entity&nbsp;&nbsp;
<input type="checkbox" value="1" name="model[Relationship]">Relationship&nbsp;&nbsp;
<input type="checkbox" value="1" name="model[Address]"> Address&nbsp;&nbsp;
<input type="checkbox" value="1" name="model[Image]"> Image&nbsp;&nbsp;
<br />
<br />
<input type="checkbox" value="1" name="is_delete"> Is delete?&nbsp;&nbsp;
<input type="checkbox" value="1" name="is_create"> Is create?&nbsp;&nbsp;
<input type="checkbox" value="1" name="distinct"> Distinct user&nbsp;&nbsp;
Users matching <?php 
echo input_tag('user', $sf_request->getParameter('user'));
?>
&nbsp;
<?php 
echo submit_tag('Go', 'class=button_small');
?>
</form>


<br />
<br />


<?php 
//echo link_to('show users only', 'modification/list?users_only=1')
?>
Example #10
0
?>
</td>
                                            <td class='filter_first'><?php 
echo object_select_tag(isset($filters['ACADEMIC_CALENDAR_ID']) ? $filters['ACADEMIC_CALENDAR_ID'] : null, null, array('include_blank' => true, 'related_class' => 'AcademicCalendar', 'text_method' => '__toString', 'control_name' => 'filters[ACADEMIC_CALENDAR_ID]', 'peer_method' => 'doSelectSpecial', 'style' => 'width: 100px;'));
?>
</td>
                                            <td class='filter'><?php 
echo input_tag('filters[EMP_NO]', isset($filters['EMP_NO']) ? $filters['EMP_NO'] : null, array('size' => 7));
?>
</td>
                                            <td class='filter'><?php 
echo input_tag('filters[EXTRA_CODE]', isset($filters['EXTRA_CODE']) ? $filters['EXTRA_CODE'] : null, array('size' => 7));
?>
</td>
                                            <td class='filter'><?php 
echo input_tag('filters[EMP_NAME]', isset($filters['EMP_NAME']) ? $filters['EMP_NAME'] : null, array('size' => 10));
?>
</td>
                                    </tr>
                            </thead>
                            <tbody>
                            <?php 
if ($pager->getNbResults() < 1) {
    ?>
                                    <tr class="list"><td colspan="100"><div class="no_record"><?php 
    echo __('No record found');
    ?>
</div></td></tr>
                            <?php 
} else {
    ?>
echo end_fieldset_tag();
echo fieldset_tag('Manage your email');
echo object_group_tag($user_private_data, 'email', array('class' => 'medium_input', 'type' => 'email'));
echo end_fieldset_tag();
?>
    <div class="form-row">
    <?php 
echo fieldset_tag('Manage your private data');
?>
    <ul>
      <li><?php 
echo label_for('edit_topo_name', __('topoName_desc'), array('class' => 'fieldname', 'id' => '_topo_name')) . ' ' . input_tag('edit_topo_name', $user_private_data->get('topo_name'), array('class' => 'medium_input'));
?>
</li>
      <li><?php 
echo label_for('edit_nickname', __('nickName_desc'), array('class' => 'fieldname', 'id' => '_nick_name')) . ' ' . input_tag('edit_nickname', $user_private_data->get('username'), array('class' => 'medium_input'));
?>
</li>
      <li><?php 
echo label_for('login_name', __('LoginName_desc'), array('class' => 'fieldname', 'id' => '_login_name')) . '<strong>' . $user_private_data->getLoginName() . '</strong>';
?>
</li>
    </ul>
    <?php 
echo end_fieldset_tag();
echo fieldset_tag('Manage your profile page');
echo object_group_tag($user_private_data, 'is_profile_public', array('callback' => 'object_checkbox_tag'));
echo end_fieldset_tag();
?>
    
    <ul class="action_buttons">
}
?>
    <?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>
Example #13
0
	<?php 
if ($_request->hasErrors()) {
    ?>
	<p>Oops! There are some validation errors.</p>
	<?php 
}
?>

<?php 
if ($_params->has('reset')) {
    ?>

	<p>This uiAjaxPanel uses loading indicator, but no shading.

	<p><?php 
    echo input_tag('txtName', 'Default value');
    ?>
 <input type="submit" name="commit" value="Submit" class="JsAction-post" />

<?php 
} else {
    ?>

<?php 
    echo input_hidden_tag('i', 1);
    echo input_hidden_tag('love', 1);
    echo input_hidden_tag('summer', 1);
    ?>

	<p><strong>You typed in "<?php 
    echo $_request->getParameter('txtName');
Example #14
0
        echo input_tag($name, $cs_setting->getValue(), 'size=55');
        break;
    case 'textarea':
        echo textarea_tag($name, $cs_setting->getValue());
        break;
    case 'yesno':
        echo 'Yes: ' . radiobutton_tag($name, 1, $cs_setting->getValue());
        echo 'No: ' . radiobutton_tag($name, 0, $cs_setting->getValue() ? false : true);
        break;
    case 'select':
        $options = _parse_attributes($cs_setting->getOptions());
        echo select_tag($name, options_for_select($options, $cs_setting->getValue(), 'include_blank=true'));
        break;
    case 'model':
        $config = _parse_attributes($cs_setting->getOptions());
        $method = $cs_setting->getOption('table_method');
        $method = $method ? $method : 'findAll';
        $options = Doctrine::getTable($cs_setting->getOption('model', true))->{$method}();
        echo select_tag($name, objects_for_select($options, 'getId', '__toString', $cs_setting->getValue()), 'include_blank=true');
        break;
    case 'wysiwyg':
        echo textarea_tag($name, $cs_setting->getvalue(), 'rich=true ' . $cs_setting->getOptions());
        break;
    case 'upload':
        echo $cs_setting->getValue() ? link_to($cs_setting->getValue(), public_path('uploads/setting/' . $cs_setting->getValue())) . '<br />' : '';
        echo input_file_tag($name, $cs_setting->getValue(), $cs_setting->getOptions());
        break;
    default:
        echo input_tag($name, $cs_setting->getValue(), 'size=55');
        break;
}
Example #15
0
>
					<td class='filter' style="vertical-align: middle;">
					<?php 
echo submit_image_tag('/images/magnifier.png', array('class' => 'sort', 'onclick' => "blur();"));
?>
</td>
					
					<td class='filter_first' style="vertical-align:middle;">
					<?php 
echo object_select_tag(isset($filters['ACADEMIC_CALENDAR_ID']) ? $filters['ACADEMIC_CALENDAR_ID'] : null, null, array('include_blank' => true, 'related_class' => 'AcademicCalendar', 'text_method' => '__toString', 'control_name' => 'filters[ACADEMIC_CALENDAR_ID]', 'peer_method' => 'doSelectFiltered', 'style' => 'width: 100px;'));
?>
</td>
                                  
                    			<td class='filter' style="vertical-align: middle;">
					<?php 
echo input_tag('filters[CODE_CLASS]', isset($filters['CODE_CLASS']) ? $filters['CODE_CLASS'] : null, array('size' => 7));
?>
</td>
                    
                    			<!-- UTS -->
                    			<td class="filter" style="text-align: center; font-weight: bold; vertical-align: middle;"><?php 
echo __('Semester 1');
?>
</td>
                    			<td class="filter" style="text-align: center; font-weight: bold; vertical-align: middle;"><?php 
echo __('Semester 2');
?>
</td>
                    
                    			<!-- UAS -->
                    			<td class="filter" style="text-align: center; font-weight: bold; vertical-align: middle;"><?php 
<?php

use_helper('General');
?>
<br /><br />
<?php 
echo '<div class="fieldname">' . picto_tag('picto_routes') . __('Route:') . ' </div>' . (isset($autofocus) ? input_tag('rnam', null, array('autofocus' => 'autofocus')) : input_tag('rnam'));
echo georef_selector('With GPS track:');
?>
<br /><br />
<?php 
$activities_raw = $sf_data->getRaw('activities');
$paragliding_tag = sfConfig::get('app_tags_paragliding');
$paragliding_tag = implode('/', $paragliding_tag);
echo __('activities') . ' ' . field_value_selector('acttyp', 'mod_routes_activities_type_list', array('keepfirst' => false, 'filled_options' => false));
echo activities_selector(true, true, $activities_raw, array(8 => $paragliding_tag));
?>
<fieldset>
<?php 
echo __('max_elevation') . ' ' . elevation_selector('malt');
echo __('height_diff_up') . ' ' . elevation_selector('hdif');
?>
<div data-act-filter="1 2 3 4 5" style="display:none">
<?php 
echo __('difficulties_start_elevation') . ' ' . elevation_selector('ralt');
echo __('difficulties_height') . ' ' . elevation_selector('dhei');
echo __('approach_height') . ' ' . elevation_selector('rappr');
?>
</div>
<div data-act-filter="1 2 3 4" style="display:none">
<?php 
Example #17
0
		
		<?php 
echo form_errors();
?>
		
		<?php 
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>
Example #18
0
echo jq_form_remote_tag(array('update' => $oAppCommon->ssDivId, 'url' => $oAppCommon->ssLink), array('name' => 'frmSearch', 'id' => 'frmSearch', 'method' => 'post', 'class' => 'fright'));
echo input_hidden_tag('ssSortOn', $oAppCommon->ssSortOn);
echo input_hidden_tag('ssSortBy', $oAppCommon->ssSortBy);
?>
		<div><?php 
echo __("Search By");
?>
&nbsp; <?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');
?>
&nbsp;<?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>
Example #19
0
?>
>
					<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));
?>
</td>
					<td class='filter'><?php 
echo input_tag('filters[NAME]', isset($filters['NAME']) ? $filters['NAME'] : null, array('size' => 15));
?>
</td>
					<td class='filter'><?php 
echo input_tag('filters[CREDIT]', isset($filters['CREDIT']) ? $filters['CREDIT'] : null, array('size' => 12));
?>
</td>
					<td class='filter'><?php 
echo object_select_tag(isset($filters['SUBJECT_GROUP_ID']) ? $filters['SUBJECT_GROUP_ID'] : null, null, array('include_blank' => true, 'related_class' => 'SubjectGroup', 'text_method' => '__toString', 'control_name' => 'filters[SUBJECT_GROUP_ID]'));
?>
</td>
					<td class='filter'><?php 
echo object_select_tag(isset($filters['DEPARTMENT_ID']) ? $filters['DEPARTMENT_ID'] : null, null, array('include_blank' => true, 'related_class' => 'Department', 'peer_method' => 'doSelectOrdered', 'control_name' => 'filters[DEPARTMENT_ID]'));
?>
</td>
				</tr>
			</thead>
			<tbody>
			<?php 
if ($pager->getNbResults() < 1) {
Example #20
0
                    <?php 
echo input_tag('filters[PUBLISHED_YEAR]', isset($filters['PUBLISHED_YEAR']) ? $filters['PUBLISHED_YEAR'] : null, array('size' => 10));
?>
                    <?php 
#echo input_date_range_tag('filters[PUBLISHED_YEAR]', isset($filters['PUBLISHED_YEAR']) ? $filters['PUBLISHED_YEAR'] : null, array ( 'rich' => true, 'withtime' => false, 'calendar_button_img' => '/images/calendar.gif', 'middle' => ' &nbsp; s/d &nbsp;', ))
?>
                    </td> 
                    <td>
                    <?php 
echo input_tag('filters[TOTAL_COL_ITEM]', isset($filters['TOTAL_COL_ITEM']) ? $filters['TOTAL_COL_ITEM'] : null, array('size' => 10));
?>
                    </td>     
                    
                    <td>
                    	<?php 
echo input_tag('filters[TOTAL_CATALOG]', isset($filters['TOTAL_CATALOG']) ? $filters['TOTAL_CATALOG'] : null, array('size' => 10));
?>
                    </td>    
				</tr>
			</thead>
			<tbody>
			<?php 
if ($pager->getNbResults() < 1) {
    ?>
				<tr class="list"><td colspan="100"><div class="no_record"><?php 
    echo __('No record found');
    ?>
</div></td></tr>
			<?php 
} else {
    ?>
    ?>
      <label for="mail">la tua mail (non verr&agrave; pubblicata)</label>
    </p>

    <?php 
    if (!$sf_user->isAuthenticated() && $sf_user->getAttribute('automoderation', '', 'comment') === 'captcha') {
        ?>
      <?php 
        echo form_error('captcha');
        ?>
      <p>
        <?php 
        echo image_tag('star.png', array('alt' => '*'));
        ?>
        <?php 
        echo input_tag('captcha', $sf_request->hasErrors() ? $sf_params->get('captcha') : '', 'id= class=text autocomplete=off');
        ?>
        <label for="captcha">scrivi qui le cifre che leggi sotto</label>
      </p>    
      <p style="margin-left: 20px;"><img src="<?php 
        echo url_for('@sf_captcha?rk=' . rand());
        ?>
" alt="captcha" /></p>
    <?php 
    }
    ?>
    <p><?php 
    echo image_tag('star.png', array('alt' => '*'));
    ?>
&nbsp;&nbsp;i campi contrassegnati da asterisco sono obbligatori</p>
Example #22
0
    </h1>
  </div>

  <div id="login" style="display: none">
    <h2><?php 
echo __('please sign-in first');
?>
</h2>
    <?php 
echo form_tag('@login', 'id=loginform');
?>
      <label for="nickname"><?php 
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)));
Example #23
0
?>
</td>
					
                    <td class='filter'>
						<?php 
echo input_tag('filters[ACTIVITY_LENGTH]', isset($filters['ACTIVITY_LENGTH']) ? $filters['ACTIVITY_LENGTH'] : null, array('size' => 7));
?>
</td>
                        
					 <td class='filter'><?php 
echo object_select_tag(isset($filters['ACTIVITY_TYPE_ID']) ? $filters['ACTIVITY_TYPE_ID'] : null, null, array('include_blank' => true, 'related_class' => 'ActivityType', 'text_method' => '__toString', 'control_name' => 'filters[ACTIVITY_TYPE_ID]'));
?>
</td>		
                    
                    <td class='filter'><?php 
echo input_tag('filters[DETAIL]', isset($filters['DETAIL']) ? $filters['DETAIL'] : null, array('size' => 15));
?>
</td>
				</tr>
			</thead>
			<tbody>
			<?php 
if ($pager->getNbResults() < 1) {
    ?>
				<tr class="list"><td colspan="100"><div class="no_record"><?php 
    echo __('No record found');
    ?>
</div></td></tr>
			<?php 
} else {
    ?>
Example #24
0
        <div class="row">
            <label for="login">Wybierz swój blog: </label>
            <?php 
echo select_tag('blog_id', objects_for_select($blogs, 'getId', 'getName'));
?>
        </div>
    
        <div class="infobox"><p class="center">Podaj swój login i hasło z <a href="http://forum.php.pl">Forum PHP.pl</a></p></div>
    
        <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 
Example #25
0
?>
					</td>
                    -->
                    <td class='filter_first'>
						<?php 
echo input_tag('filters[NO_REG]', isset($filters['NO_REG']) ? $filters['NO_REG'] : null, array('size' => 12));
?>
					</td>
                    <td class='filter'>
		    			<?php 
echo input_tag('filters[CODE]', isset($filters['CODE']) ? $filters['CODE'] : null, array('size' => 12));
?>
		  			</td>
		 			<td class='filter'>
		    			<?php 
echo input_tag('filters[NAME]', isset($filters['NAME']) ? $filters['NAME'] : null, array('size' => 25));
?>
		 			</td>
					<td class='filter'>
					<?php 
echo input_hidden_tag('filters[COL_ITEM_ID]', isset($filters['COL_ITEM_ID']) ? $filters['COL_ITEM_ID'] : null);
if (isset($filters['COL_ITEM_ID']) && $filters['COL_ITEM_ID']) {
    echo input_auto_complete_tag('index', isset($filters['COL_ITEM_ID']) && $filters['COL_ITEM_ID'] ? ColItemPeer::retrieveByPk($filters['COL_ITEM_ID'])->getIndexNo() : '', '/col_item/getIndex', array('size' => 20), array('after_update_element' => 'function(f, s) {$("COL_ITEM_ID").updateFromInformalAutocomplete(f, s);}', 'min_chars' => 1));
} else {
    echo input_auto_complete_tag('index', null, '/col_item/getIndex', array('size' => 20), array('after_update_element' => 'function(f, s) {$("filters_COL_ITEM_ID").updateFromInformalAutocomplete(f, s);}', 'min_chars' => 1));
}
?>
						<?php 
#echo object_select_tag(isset($filters['col_item_id']) ? $filters['col_item_id'] : null, null, array ( 'include_blank' => true, 'related_class' => 'ColItem', 'text_method' => '__toString', 'control_name' => 'filters[col_item_id]', 'style'=>"width: 80px;", ))
?>
					</td>
Example #26
0
    ?>
 form-error<?php 
}
?>
">
  <?php 
if ($sf_request->hasError('tabla{orden}')) {
    ?>
    <?php 
    echo form_error('tabla{orden}', array('class' => 'form-error-msg'));
    ?>
  <?php 
}
?>
  <?php 
$value = input_tag('tabla[orden]', $tabla->getOrden(), array('size' => 5, 'control_name' => 'tabla[orden]'));
echo $value ? $value : '&nbsp;';
?>
  <div class="sf_edit_help"><?php 
echo __('Indique el orden de la tabla dentro de la lisa');
?>
</div>
  </div>
</div>

</fieldset>



<?php 
include_partial('edit_actions', array('tabla' => $tabla));
    <?php 
    echo input_hidden_tag('topic_id', $topic->getId());
    ?>
    
  <?php 
} else {
    ?>
    
    <?php 
    echo form_error('title');
    ?>
    <?php 
    echo label_for('title', __('Title', null, 'sfSimpleForum'));
    ?>
    <?php 
    echo input_tag('title', '', 'id=topic_title');
    ?>
    <?php 
    if (isset($forum)) {
        ?>
      <?php 
        echo input_hidden_tag('forum_name', $forum->getStrippedName());
        ?>
    <?php 
    } else {
        ?>
      <?php 
        echo label_for('forum', __('Forum', null, 'sfSimpleForum'));
        ?>
      <?php 
        echo select_tag('forum_name', options_for_select(sfSimpleForumForumPeer::getAllAsArray()));
Example #28
0
<form action="<?php 
echo url_for($entity->getInternalUrl('addAlias'));
?>
" method="POST">
<?php 
echo input_hidden_tag('id', $entity->id);
echo input_tag('alias', $sf_request->getParameter('alias'), 'size=30');
?>
 

<?php 
if ($sf_user->hasCredential('admin')) {
    ?>
  &nbsp;context:&nbsp;
  <?php 
    echo input_tag('context', $sf_request->getParameter('context'), 'size=20');
    ?>
 
<?php 
}
?>

<?php 
echo submit_tag('Add', 'class=button_small');
?>
</form>
</div>

<div class="padded">
<?php 
foreach ($aliases as $alias) {
Example #29
0
?>
</td>
                    
                    <!--td class='filter'>
						<?php 
#echo my_object_select_tag(isset($filters['DEPARTMENT_ID']) ? $filters['DEPARTMENT_ID'] : null, null, DepartmentPeer::getParents(), array ( 'include_blank' => true, 'related_class' => 'Department', 'peer_method'=>'doSelectFiltered', 'control_name' => 'filters[DEPARTMENT_ID]',))
?>
</td-->
                    
                    <!--td class='filter'><?php 
#echo input_tag('filters[YEAR]', isset($filters['YEAR']) ? $filters['YEAR'] : null, array ( 'size' => 5,))
?>
</td-->
                    
                    <td class='filter'><?php 
echo input_tag('filters[CAPACITY]', isset($filters['CAPACITY']) ? $filters['CAPACITY'] : null, array('size' => 5));
?>
</td>
                    
                    <td class='filter'><?php 
echo object_select_tag(isset($filters['LOCATION_CATEGORY_ID']) ? $filters['LOCATION_CATEGORY_ID'] : null, null, array('include_blank' => true, 'related_class' => 'LocationCategory', 'text_method' => '__toString', 'control_name' => 'filters[LOCATION_CATEGORY_ID]'));
?>
</td>					

                    <td class='filter'><?php 
echo object_select_tag(isset($filters['LOCATION_CONDITION_ID']) ? $filters['LOCATION_CONDITION_ID'] : null, null, array('include_blank' => true, 'related_class' => 'LocationCondition', 'text_method' => '__toString', 'control_name' => 'filters[LOCATION_CONDITION_ID]'));
?>
</td>					

				</tr>
			</thead>
Example #30
0
function tag_file_download_description()
{
    global $step, $endform, $tag_name;
    $atts = gpsa(array('class', 'escape', 'wraptag'));
    extract($atts);
    $out = form(startTable('tagbuilder') . tr(tdcs(hed(gTxt('tag_' . $tag_name), 3), 2)) . tagRow('escape', escape_pop($escape)) . tagRow('wraptag', input_tag('wraptag', $wraptag)) . tagRow('class', fInput('text', 'class', $class, 'edit', '', '', 25)) . $endform);
    if ($step == 'build') {
        $out .= tdb(tb($tag_name, $atts));
    }
    return $out;
}