shortcode ) ? ' wpb_sortable ' : ' ' . $this->nonDraggableClass . ' ' ); return 'data-element_type="' . $this->settings['base'] . '" data-vc-column-width="' . wpb_vc_get_column_width_indent( $width[ $i ] ) . '" class="wpb_vc_column wpb_' . $this->settings['base'] . $sortable . $this->templateWidth() . ' wpb_content_holder"' . $this->customAdminBlockParams(); } /** * @return string */ public function outputEditorControlAlign() { $alignment = array( array( 'name' => 'left', 'label' => esc_html__( 'Left', 'js_composer' ), ), array( 'name' => 'center', 'label' => esc_html__( 'Center', 'js_composer' ), ), array( 'name' => 'right', 'label' => esc_html__( 'Right', 'js_composer' ), ), ); $output = ''; foreach ( $alignment as $data ) { $attr = esc_attr( $data['name'] ); $output .= sprintf( '', esc_attr( $attr ), $attr, esc_html( $data['label'] ), $attr ); } return $output . ''; } }