Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sprint.migration/examples/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sprint.migration/examples/Version20150520000005.php

<?php

namespace Sprint\Migration;

class Version20150520000005 extends Version
{

    protected $description = "Пример работы с highload-блоками";

    /**
     * @throws Exceptions\HelperException
     * @return bool|void
     */
    public function up()
    {

        $helper = $this->getHelperManager();

        $hlblockId = $helper->Hlblock()->saveHlblock([
            'NAME' => 'Test',
            'TABLE_NAME' => 'hl_test',
        ]);

        $helper->Hlblock()->saveField($hlblockId, [

            'USER_TYPE_ID' => 'string',
            'FIELD_NAME' => 'UF_NAME',
        ]);

        $helper->Hlblock()->saveField($hlblockId, [
            'USER_TYPE_ID' => 'string',
            'FIELD_NAME' => 'UF_CODE',
        ]);

    }

    /**
     * @return bool|void
     */
    public function down()
    {
        //your code ...
    }

}