-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions_settings.php
More file actions
30 lines (26 loc) · 984 Bytes
/
options_settings.php
File metadata and controls
30 lines (26 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
namespace Fi1a\BitrixRequire;
use Bitrix\Main\Config\Option;
use Bitrix\Main\Localization\Loc;
$composerApi = new ComposerApi();
?><tr>
<td valign="top" width="100%">
<table class="adm-detail-content-table edit-table">
<tbody>
<tr>
<td class="adm-detail-content-cell-l" valign="top">
<label for="COMPOSER_HOME"><?= Loc::getMessage('FBR_COMPOSER_HOME')?>:</label>
</td>
<td class="adm-detail-content-cell-r">
<input type="text" name="COMPOSER_HOME" size="60" value="<?= Option::get('fi1a.bitrixrequire', 'COMPOSER_HOME', 'local')?>">
<?php
echo BeginNote();
echo Loc::getMessage('FBR_COMPOSER_PATH') . ' ' . $composerApi->getVendorDir();
echo EndNote();
?>
</td>
</tr>
</tbody>
</table>
</td>
</tr>