感谢配置文件,有没有办法在 PhpStorm 模板中设置 var?

Is there a way to set a var in PhpStorm Template thanks a config file?

在 PhpStorm 中,我正在使用 Apache velocity 执行此 php 文件模板:

Php模板

<?php

defined( 'ABSPATH' ) || exit;

use function $plugin_name_namespace\Core\get_current_plugin_domain;

printf( '<article class="post-entry-content">' );
if ( has_post_thumbnail() ) {
    printf( '<a class="post-thumbnail-link" href="%s">%s</a>',
        get_the_permalink(),
        get_the_post_thumbnail()
    );
}
echo '<div class="post-content">';
printf( '<h4 class="entry-title"><a href="%s" title="%s" rel="bookmark">%s</a></h4>',
    get_the_permalink(),
    get_the_title(),
    get_the_title()
);
printf( '<div class="entry-excerpt">%s</div>' ,get_the_excerpt() );
printf('<a href="%s" class="details-link button" rel="nofollow">%s</a>',
    get_the_permalink(),
    __( "See More", get_current_plugin_domain() )
);
echo '</div>';
echo '</article>';

?>

我想使用 apache velocity 设置 $plugin_name_namespace 来自配置文件的默认值(.ini、.env ... 等等)

或..

使用配置文件中的值动态填充模板。

有办法吗?

目前不可行,请投票给 IDEA-217553 以通知此功能的任何进展