*/ final class ContactElementMapper extends DataMapperFactory { /** * Columns. * * @var array * @since 1.0.0 */ public const COLUMNS = [ 'profile_contact_element_id' => ['name' => 'profile_contact_element_id', 'type' => 'int', 'internal' => 'id'], 'profile_contact_element_type' => ['name' => 'profile_contact_element_type', 'type' => 'int', 'internal' => 'type'], 'profile_contact_element_subtype' => ['name' => 'profile_contact_element_subtype', 'type' => 'int', 'internal' => 'subtype'], 'profile_contact_element_order' => ['name' => 'profile_contact_element_order', 'type' => 'int', 'internal' => 'order'], 'profile_contact_element_content' => ['name' => 'profile_contact_element_content', 'type' => 'string', 'internal' => 'content'], 'profile_contact_element_contact' => ['name' => 'profile_contact_element_contact', 'type' => 'int', 'internal' => 'contact'], ]; /** * Primary table. * * @var string * @since 1.0.0 */ public const TABLE = 'profile_contact_element'; /** * Primary field name. * * @var string * @since 1.0.0 */ public const PRIMARYFIELD = 'profile_contact_element_id'; }