Правка расположения кнопок
Удаление старого функционала по кастомному файлу
This commit is contained in:
parent
4b7673ed96
commit
a31324ccd8
3 changed files with 1 additions and 31 deletions
|
@ -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>
|
||||
|
|
|
@ -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 .
|
||||
|
|
|
@ -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 [
|
||||
|
|
Loading…
Add table
Reference in a new issue