NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
entrepot
/
wp-content
/
plugins
/
realpress
/
config
/
widgets
/
Name
Size
Perms
Actions
📄 mortgage-calculator.php
1,165 B
0644
Edit
|
Chmod
|
Delete
📄 property-list.php
1,186 B
0644
Edit
|
Chmod
|
Delete
📄 schedule-tour.php
957 B
0644
Edit
|
Chmod
|
Delete
Editing: schedule-tour.php
<?php use RealPress\Helpers\Fields\Checkbox; use RealPress\Helpers\Fields\Text; use RealPress\Helpers\Fields\Select; return apply_filters( 'realpress/filter/config/widgets/schedule-tour', array( 'title' => array( 'type' => new Text(), 'id' => 'title', 'title' => esc_html__( 'Title', 'realpress' ), 'default' => '', ), 'cc_admin' => array( 'type' => new Checkbox(), 'id' => 'cc_admin', 'title' => esc_html__( 'CC admin email', 'realpress' ), 'label' => 'Enable', 'default' => '', ), 'layout_type' => array( 'name' => 'layout_type', 'type' => new Select(), 'id' => 'layout_type', 'title' => esc_html__( 'Select Layout Type', 'realpress' ), 'options' => array( '1' => esc_html__( 'Default', 'realpress' ), '2' => esc_html__( 'Toggle Form', 'realpress' ), ), 'default' => '1', 'is_single_key' => true, ), ) );
Cancel