array( 'url' ), ); } /** * Method for setting the title for each translatable field. * * @since 1.9.0 * * @param string $field The name of the field. * @return string */ protected function get_title( $field ) { if ( 'text' === $field ) { return __( 'Hotspot: Marker Text', 'uael' ); } if ( 'content' === $field ) { return __( 'Hotspot: Tooltip Content', 'uael' ); } if ( 'marker_link' === $field ) { return __( 'Hotspot: Marker Link', 'uael' ); } return ''; } /** * Method for determining the editor type for each field. * * @since 1.9.0 * * @param string $field Name of the field. * @return string */ protected function get_editor_type( $field ) { switch ( $field ) { case 'text': case 'content': case 'marker_link': return 'LINE'; default: return ''; } } }