- Модуль: seo
- Путь к файлу: ~/bitrix/modules/seo/lib/leadads/leadadsform.php
- Класс: BitrixSeoLeadAdsLeadAdsForm
- Вызов: LeadAdsForm::toArray
public function toArray(): array
{
return array_filter([
'id' => $this->id,
'name' => $this->name,
'title' => $this->title,
'description' => $this->description,
'message' => $this->successMessage,
'link' => $this->link,
'active' => $this->active,
'fields' => array_map(
static function(Field $element) : array
{
return $element->toArray();
},
$this->fields
)
]);
}