Skip to content

Commit

Permalink
Merge pull request #1386 from vektor-inc/doc/vk-blocks-load
Browse files Browse the repository at this point in the history
【2人目確認中】vk-blocksの読み込むファイルの役割のコメントを追加
  • Loading branch information
mthaichi authored Aug 24, 2022
2 parents 0939b4d + 75ae360 commit bb29932
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion inc/vk-blocks-config.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php
/**
* Load VK Blocks Files
* Load VK Blocks Inc Files
*
* このファイルはinc直下にある各ロードするファイルを読み込むだけ
*
* @package vk-blocks
*/
Expand Down
14 changes: 9 additions & 5 deletions inc/vk-blocks/vk-blocks-functions.php
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
<?php
/**
* VK Blocks main functions
* Load VK Blocks Files
*
* Main Functions for VK Blocks
* このファイルはinc/vk-blocks内にあるフォルダ内を読み込むだけ
*
* @package vk_blocks
*/

// サーバーサイドレンダリングスクリプトを読み込み.
require_once dirname( __FILE__ ) . '/view/class-vk-blocks-postlist.php';
require_once dirname( __FILE__ ) . '/view/responsive-br.php';
// オプション値などでスタイルを作る処理を読み込み.
require_once dirname( __FILE__ ) . '/style/balloon.php';
require_once dirname( __FILE__ ) . '/style/hidden-extension.php';

require_once dirname( __FILE__ ) . '/view/responsive-br.php';
require_once dirname( __FILE__ ) . '/view/class-vk-blocks-postlist.php';

require_once dirname( __FILE__ ) . '/class-vk-blocks-print-css-variables.php';

// オプション値を定義
require_once dirname( __FILE__ ) . '/class-vk-blocks-options.php';
VK_Blocks_Options::init();

Expand Down

0 comments on commit bb29932

Please sign in to comment.