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(); } public function outputEditorControlAlign() { $alignment = array( array( 'name' => 'left', 'label' => __( 'Left', 'js_composer' ) ), array( 'name' => 'center', 'label' => __( 'Center', 'js_composer' ) ), array( 'name' => 'right', 'label' => __( 'Right', 'js_composer' ) ), ); $output = ''; foreach ( $alignment as $data ) { $attr = esc_attr( $data['name'] ); $output .= ''; } return $output . ''; } }