array( 'url' ), ); } /** * Method for setting the title for each translatable field * * @since 2.0.0 * * @param string $field The name of the field * @return string */ protected function get_title( $field ) { if ( 'title' === $field ) { return esc_html__( 'Calendar: Event Title', 'elementor-extras' ); } if ( 'url' === $field ) { return esc_html__( 'Calendar: Event Link', 'elementor-extras' ); } return ''; } /** * Method for determining the editor type for each field * @since 2.0.0 * * @param string $field Name of the field * @return string */ protected function get_editor_type( $field ) { switch( $field ) { case 'text': case 'url': return 'LINE'; default: return ''; } } }