1
0
Fork 0
mirror of synced 2025-04-04 06:13:32 +03:00

Правка расположения кнопок

Удаление старого функционала по кастомному файлу
This commit is contained in:
Ivan Chaplygin 2024-12-05 10:02:30 +03:00
parent 4b7673ed96
commit a31324ccd8
3 changed files with 1 additions and 31 deletions

View file

@ -562,8 +562,7 @@ if ($STEP === 1) {
?>
</tbody>
</table>
<button class="adm-btn-save add-custom-row" type="button" style="margin-top: 10px;"><?= GetMessage('ADD_PROPERTY');?></button>
<br>
<button class="adm-btn-save add-custom-row" type="button" style="margin-top: 20px;"><?= GetMessage('ADD_PROPERTY');?></button>
<br>
</div>
</div>

View file

@ -24,16 +24,6 @@ trait InstallerTrait
false
);
$path = $_SERVER['DOCUMENT_ROOT'] . '/local/';
CheckDirPath($path);
$file = new \Bitrix\Main\IO\File($path . 'icml_property_retailcrm.txt', $siteId = null);
if (!$file->isExists()) {
$file->putContents("");
}
$pathFrom = $_SERVER['DOCUMENT_ROOT'] .
'/bitrix/modules/' .
Constants::MODULE_ID .

View file

@ -17,25 +17,6 @@ class SettingServiceTest extends \BitrixTestCase
;
}
public function testConstruct(): SettingsService
{
$path = $_SERVER['DOCUMENT_ROOT'] . '/local/';
CheckDirPath($path);
$file = new \Bitrix\Main\IO\File($path . '/icml_property_retailcrm.txt', $siteId = null);
$file->putContents("property1 = test prop \n property2 = test prop 2");
$settingService = SettingsService::getInstance($this->getSetupVars(), "");
$this->assertInstanceOf(SettingsService::class, $settingService);
$this->assertArrayHasKey('property1', $settingService->actualPropList);
$this->assertArrayHasKey('property2', $settingService->actualPropList);
return $settingService;
}
private function getSetupVars()
{
return [