vc-row-inner.php 411 B

123456789101112131415161718192021
  1. <?php
  2. if ( ! defined( 'ABSPATH' ) ) {
  3. die( '-1' );
  4. }
  5. require_once vc_path_dir( 'SHORTCODES_DIR', 'vc-row.php' );
  6. /**
  7. * Class WPBakeryShortCode_Vc_Row_Inner
  8. */
  9. class WPBakeryShortCode_Vc_Row_Inner extends WPBakeryShortCode_Vc_Row {
  10. /**
  11. * @param string $content
  12. * @return string
  13. * @throws \Exception
  14. */
  15. public function template( $content = '' ) {
  16. return $this->contentAdmin( $this->atts );
  17. }
  18. }