HEX
Server: Apache/2.4.6 (CentOS) mpm-itk/2.4.7-04 mod_fcgid/2.3.9 PHP/5.4.16
System: Linux dvm.vladweb.ru 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: region-gk.ru (1016)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: //var/www/bk/100/bitrix/modules/yenisite.coreparser/options_search.php
<?php

use Bitrix\Main\Localization\Loc;
Loc::loadLanguageFile(__FILE__);

$brands = COption::GetOptionString(moduldeID, 'brands', 'N');
$exception_words = COption::GetOptionString(moduldeID, 'exception_words', '');
?>

	<tr class="heading">
		<td colspan="2"><b><?=Loc::getMessage("MAIN_OPTIONS_SEARCH")?></b></td>
	</tr>
	<tr>
		<td class="column-name"><?=Loc::getMessage('SPEC_BRANDS')?>: </td>
		<td class="column-value">
			<select name="brands">
				<option value='N'<?if($brands!='Y'):?> selected="selected"<?endif?>><?=Loc::getMessage('SPEC_BRANDS_N_TITLE')?></option>
				<option value='Y'<?if($brands=='Y'):?> selected="selected"<?endif?>><?=Loc::getMessage('SPEC_BRANDS_Y_TITLE')?></option>
			</select>
		</td>
	</tr>
	<tr>
		<td class="column-name">
			<?=Loc::getMessage('SPEC_EXEPTION_WORDS')
			?><span class="required"><sup><?=\Yenisite\CoreParser\Options::addNote(Loc::getMessage('SPEC_EXEPTION_WORDS_TIP'))?></sup></span>:
		</td>
		<td class="column-value" ><textarea rows="6" cols="45" name="exception_words"><?=$exception_words?></textarea></td>
	</tr>