2018-01-26 15:50:15 +01:00

717 lines
22 KiB
PHP

<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) exit; // If this file is called directly, abort.
class Widget_Eael_NinjaForm extends Widget_Base {
public function get_name() {
return 'eael-ninja';
}
public function get_title() {
return esc_html__( 'EA Ninja Form', 'essential-addons-elementor' );
}
public function get_icon() {
return 'fa fa-envelope-o';
}
public function get_categories() {
return [ 'essential-addons-elementor' ];
}
protected function _register_controls() {
$this->start_controls_section(
'eael_section_ninja_form',
[
'label' => esc_html__( 'Add Form Shortcode', 'essential-addons-elementor' )
]
);
$this->add_control(
'eael_ninja_form',
[
'label' => esc_html__( 'Select ninja form', 'essential-addons-elementor' ),
'label_block' => true,
'type' => Controls_Manager::SELECT,
'options' => eael_select_ninja_form(),
]
);
$this->end_controls_section();
$this->start_controls_section(
'eael_section_ninja_styles',
[
'label' => esc_html__( 'Form Container Styles', 'essential-addons-elementor' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_control(
'eael_ninja_background',
[
'label' => esc_html__( 'Form Background Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'default' => '#fff',
'selectors' => [
'{{WRAPPER}} .eael-ninja-container' => 'background-color: {{VALUE}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_alignment',
[
'label' => esc_html__( 'Form Alignment', 'essential-addons-elementor' ),
'type' => Controls_Manager::CHOOSE,
'label_block' => true,
'options' => [
'default' => [
'title' => __( 'Default', 'essential-addons-elementor' ),
'icon' => 'fa fa-ban',
],
'left' => [
'title' => esc_html__( 'Left', 'essential-addons-elementor' ),
'icon' => 'fa fa-align-left',
],
'center' => [
'title' => esc_html__( 'Center', 'essential-addons-elementor' ),
'icon' => 'fa fa-align-center',
],
'right' => [
'title' => esc_html__( 'Right', 'essential-addons-elementor' ),
'icon' => 'fa fa-align-right',
],
],
'default' => 'default',
'prefix_class' => 'eael-contact-form-align-',
]
);
$this->add_responsive_control(
'eael_ninja_width',
[
'label' => esc_html__( 'Form Width', 'essential-addons-elementor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', '%' ],
'range' => [
'px' => [
'min' => 10,
'max' => 1500,
],
'em' => [
'min' => 1,
'max' => 80,
],
],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container' => 'width: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_max_width',
[
'label' => esc_html__( 'Form Max Width', 'essential-addons-elementor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', '%' ],
'range' => [
'px' => [
'min' => 10,
'max' => 1500,
],
'em' => [
'min' => 1,
'max' => 80,
],
],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container' => 'max-width: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_margin',
[
'label' => esc_html__( 'Form Margin', 'essential-addons-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_padding',
[
'label' => esc_html__( 'Form Padding', 'essential-addons-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'eael_ninja_border_radius',
[
'label' => esc_html__( 'Border Radius', 'essential-addons-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'separator' => 'before',
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'eael_ninja_border',
'selector' => '{{WRAPPER}} .eael-ninja-container',
]
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
[
'name' => 'eael_ninja_box_shadow',
'selector' => '{{WRAPPER}} .eael-ninja-container',
]
);
$this->end_controls_section();
/**
* Form Fields Styles
*/
$this->start_controls_section(
'eael_section_ninja_field_styles',
[
'label' => esc_html__( 'Form Fields Styles', 'essential-addons-elementor' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_control(
'eael_ninja_input_background',
[
'label' => esc_html__( 'Input Field Background', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea' => 'background-color: {{VALUE}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_input_width',
[
'label' => esc_html__( 'Input Width', 'essential-addons-elementor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', '%' ],
'range' => [
'px' => [
'min' => 10,
'max' => 1500,
],
'em' => [
'min' => 1,
'max' => 80,
],
],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"]' => 'width: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_textarea_width',
[
'label' => esc_html__( 'Textarea Width', 'essential-addons-elementor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', '%' ],
'range' => [
'px' => [
'min' => 10,
'max' => 1500,
],
'em' => [
'min' => 1,
'max' => 80,
],
],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea' => 'width: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_input_padding',
[
'label' => esc_html__( 'Fields Padding', 'essential-addons-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_control(
'eael_ninja_input_border_radius',
[
'label' => esc_html__( 'Border Radius', 'essential-addons-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'separator' => 'before',
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'eael_ninja_input_border',
'selector' => '
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea',
]
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
[
'name' => 'eael_ninja_input_box_shadow',
'selector' => '
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea',
]
);
$this->add_control(
'eael_ninja_focus_heading',
[
'type' => Controls_Manager::HEADING,
'label' => esc_html__( 'Focus State Style', 'essential-addons-elementor' ),
'separator' => 'before',
]
);
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
[
'name' => 'eael_ninja_input_focus_box_shadow',
'selector' => '
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea:focus',
]
);
$this->add_control(
'eael_ninja_input_focus_border',
[
'label' => esc_html__( 'Border Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"]:focus,
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea:focus' => 'border-color: {{VALUE}};',
],
]
);
$this->end_controls_section();
/**
* Typography
*/
$this->start_controls_section(
'eael_section_ninja_typography',
[
'label' => esc_html__( 'Color & Typography', 'essential-addons-elementor' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_control(
'eael_ninja_label_color',
[
'label' => esc_html__( 'Label Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container, {{WRAPPER}} .eael-ninja-container .nf-field-label label' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'eael_ninja_field_color',
[
'label' => esc_html__( 'Field Font Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'eael_ninja_placeholder_color',
[
'label' => esc_html__( 'Placeholder Font Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container ::-webkit-input-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .eael-ninja-container ::-moz-placeholder' => 'color: {{VALUE}};',
'{{WRAPPER}} .eael-ninja-container ::-ms-input-placeholder' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'eael_ninja_label_heading',
[
'type' => Controls_Manager::HEADING,
'label' => esc_html__( 'Label Typography', 'essential-addons-elementor' ),
'separator' => 'before',
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'eael_ninja_label_typography',
'selector' => '{{WRAPPER}} .eael-ninja-container, {{WRAPPER}} .eael-ninja-container .wpuf-label label',
]
);
$this->add_control(
'eael_ninja_heading_input_field',
[
'type' => Controls_Manager::HEADING,
'label' => esc_html__( 'Input Fields Typography', 'essential-addons-elementor' ),
'separator' => 'before',
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'eael_ninja_input_field_typography',
'selector' => '{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="text"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="password"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="email"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="url"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="number"],
{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element textarea',
]
);
$this->end_controls_section();
/**
* Button Style
*/
$this->start_controls_section(
'eael_section_ninja_submit_button_styles',
[
'label' => esc_html__( 'Submit Button Styles', 'essential-addons-elementor' ),
'tab' => Controls_Manager::TAB_STYLE
]
);
$this->add_responsive_control(
'eael_ninja_submit_btn_width',
[
'label' => esc_html__( 'Button Width', 'essential-addons-elementor' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em', '%' ],
'range' => [
'px' => [
'min' => 10,
'max' => 1500,
],
'em' => [
'min' => 1,
'max' => 80,
],
],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="submit"]' => 'width: {{SIZE}}{{UNIT}};',
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]' => 'width: {{SIZE}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_submit_btn_alignment',
[
'label' => esc_html__( 'Button Alignment', 'essential-addons-elementor' ),
'type' => Controls_Manager::CHOOSE,
'label_block' => true,
'options' => [
'default' => [
'title' => __( 'Default', 'essential-addons-elementor' ),
'icon' => 'fa fa-ban',
],
'left' => [
'title' => esc_html__( 'Left', 'essential-addons-elementor' ),
'icon' => 'fa fa-align-left',
],
'center' => [
'title' => esc_html__( 'Center', 'essential-addons-elementor' ),
'icon' => 'fa fa-align-center',
],
'right' => [
'title' => esc_html__( 'Right', 'essential-addons-elementor' ),
'icon' => 'fa fa-align-right',
],
],
'default' => 'default',
'prefix_class' => 'eael-contact-form-btn-align-',
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'eael_ninja_submit_btn_typography',
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
'selector' => '{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]',
]
);
$this->add_responsive_control(
'eael_ninja_submit_btn_margin',
[
'label' => esc_html__( 'Margin', 'essential-addons-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->add_responsive_control(
'eael_ninja_submit_btn_padding',
[
'label' => esc_html__( 'Padding', 'essential-addons-elementor' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', 'em', '%' ],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
]
);
$this->start_controls_tabs( 'eael_ninja_submit_button_tabs' );
$this->start_controls_tab( 'normal', [ 'label' => esc_html__( 'Normal', 'essential-addons-elementor' ) ] );
$this->add_control(
'eael_ninja_submit_btn_text_color',
[
'label' => esc_html__( 'Text Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'eael_ninja_submit_btn_background_color',
[
'label' => esc_html__( 'Background Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]' => 'background-color: {{VALUE}};',
],
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'eael_ninja_submit_btn_border',
'selector' => '{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]',
]
);
$this->add_control(
'eael_ninja_submit_btn_border_radius',
[
'label' => esc_html__( 'Border Radius', 'essential-addons-elementor' ),
'type' => Controls_Manager::SLIDER,
'range' => [
'px' => [
'max' => 100,
],
],
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]' => 'border-radius: {{SIZE}}px;',
],
]
);
$this->end_controls_tab();
$this->start_controls_tab( 'eael_ninja_submit_btn_hover', [ 'label' => esc_html__( 'Hover', 'essential-addons-elementor' ) ] );
$this->add_control(
'eael_ninja_submit_btn_hover_text_color',
[
'label' => esc_html__( 'Text Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]:hover' => 'color: {{VALUE}};',
],
]
);
$this->add_control(
'eael_ninja_submit_btn_hover_background_color',
[
'label' => esc_html__( 'Background Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]:hover' => 'background-color: {{VALUE}};',
],
]
);
$this->add_control(
'eael_ninja_submit_btn_hover_border_color',
[
'label' => esc_html__( 'Border Color', 'essential-addons-elementor' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]:hover' => 'border-color: {{VALUE}};',
],
]
);
$this->end_controls_tab();
$this->end_controls_tabs();
$this->add_group_control(
Group_Control_Box_Shadow::get_type(),
[
'name' => 'eael_ninja_submit_btn_box_shadow',
'selector' => '{{WRAPPER}} .eael-ninja-container .nf-field .nf-field-element input[type="button"]',
]
);
$this->end_controls_section();
}
protected function render( ) {
$settings = $this->get_settings();
?>
<?php if ( ! empty( $settings['eael_ninja_form'] ) ) : ?>
<div class="eael-ninja-container">
<?php echo do_shortcode( '[ninja_form id="'.$settings['eael_ninja_form'].'"]' ); ?>
</div>
<?php endif; ?>
<?php
}
protected function content_template() {''
?>
<?php
}
}
Plugin::instance()->widgets_manager->register_widget_type( new Widget_Eael_NinjaForm() );