class-wpml-beaver-builder-testimonials.php 579 Bytes
<?php

class WPML_Beaver_Builder_Testimonials extends WPML_Beaver_Builder_Module_With_Items {

	public function &get_items( $settings ) {
		return $settings->testimonials;
	}

	public function get_fields() {
		return array( 'testimonial' );
	}

	protected function get_title( $field ) {
		switch( $field ) {
			case 'testimonial':
				return esc_html__( 'Testimonial content', 'sitepress' );

			default:
				return '';
		}
	}

	protected function get_editor_type( $field ) {
		switch( $field ) {
			case 'testimonial':
				return 'VISUAL';

			default:
				return '';
		}
	}

}