Filter: immonex_notify_request_form_select_options

Abruf

Auswahloptionen der Select-Elemente des Suchauftrags-Formulars (Frontend), die aus den entsprechenden Suchformular-Elementen extrahiert werden

Parameter

Name (Typ)
$options (array)

Rückgabewert (Original-Array)

$options = [
    'salutation'      => [
        'x' => 'keine Angabe',
        'm' => 'Herr',
        'f' => 'Frau',
    ],
    'property_type'   => [
        'room'         => 'Zimmer',
        'flat'         => 'Wohnung',
        'house'        => 'Haus',
        'house_single' => 'Einfamilienhaus',
        'house_multi'  => 'Mehrfamilienhaus',
        'house_row'    => 'Reihenhaus',
        'lot'          => 'Grundstück',
        'office'       => 'Büro',
        'retail'       => 'Verkaufsfläche',
        'gastro_hotel' => 'Gastronomie-Immobilie/Hotel',
        'storage_prod' => 'Lager- oder Produktionsfläche',
        'investment'   => 'Anlageobjekt',
    ],
    'marketing_type'  => [
        'sale'       => 'zum Kauf',
        'rent_lease' => 'zur Miete',
    ],
    'distance_radius' => [
        '10'  => '10 km',
        '25'  => '25 km',
        '50'  => '50 km',
        '100' => '100 km',
    ],
];

Code-Beispiel

/**
 * [immonex Notify] Filter: Optionen der Select-Elemente des Frontend-Suchauftrags-Formulars
 * abrufen.
 */
$select_options = apply_filters( 'immonex_notify_request_form_select_options', [] );

Siehe auch