芝麻web文件管理V1.00
编辑当前文件:/home/disqkgca/aqanet.org/wp-content/plugins/tlp-team/app/Controllers/GutenbergController.php
[ __CLASS__, 'render_shortcode' ], ] ); } } /** * Render Shortcode. * * @param array $atts Shortcode attributes. * * @return string|void */ public static function render_shortcode( $atts ) { if ( ! empty( $atts['gridId'] ) ) { return do_shortcode( '[tlpteam id="' . absint( $atts['gridId'] ) . '"]' ); } } /** * Block Assets. * * @return void */ public function block_assets() { wp_enqueue_style( 'wp-blocks' ); } /** * Block Editor Assets. * * @return void */ public function block_editor_assets() { // Scripts. wp_enqueue_script( 'rt-team-cgb-block-js', rttlp_team()->assets_url() . 'js/tlp-team-blocks.min.js', [ 'wp-blocks', 'wp-i18n', 'wp-element' ], ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ? time() : TLP_TEAM_VERSION, true ); wp_localize_script( 'rt-team-cgb-block-js', 'rtTeam', [ 'short_codes' => Fns::getTTPShortcodeList(), 'icon' => rttlp_team()->assets_url() . 'images/team.png', ] ); wp_enqueue_style( 'wp-edit-blocks' ); } }