Changeset 3423670
- Timestamp:
- 12/19/2025 12:51:42 PM (3 weeks ago)
- Location:
- aurora-design-blocks/trunk
- Files:
-
- 3 edited
-
inc/admin.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
aurora-design-blocks/trunk/inc/admin.php
r3421640 r3423670 161 161 AuroraDesignBlocks_AdminTop::get_instance(); 162 162 163 // ★★★ 変更箇所:各タブクラスの静的登録メソッドを呼び出す ★★★ 164 // タブを追加したい場合は、ここにそのクラスの register_hooks() を1行追加するだけ 163 164 165 166 167 ///////////////////////////////////////////////////////////////// 168 // プラグイン有効化での管理画面リダイレクト処理 s 169 ///////////////////////////////////////////////////////////////// 170 171 // プラグイン有効化時:リダイレクト用フラグを保存 172 register_activation_hook(ADB_PLUGIN_FILE, function () { 173 add_option('aurora_design_blocks_do_activation_redirect', true); 174 }); 175 176 // 管理画面初期化時:フラグがあれば管理画面を開く 177 add_action('admin_init', function () { 178 if (!get_option('aurora_design_blocks_do_activation_redirect')) { 179 return; 180 } 181 182 delete_option('aurora_design_blocks_do_activation_redirect'); 183 184 // ネットワーク有効化時はリダイレクトしない 185 if (is_network_admin()) { 186 return; 187 } 188 wp_safe_redirect( 189 admin_url('admin.php?page=aurora-design-blocks') 190 ); 191 exit; 192 }); 193 194 ///////////////////////////////////////////////////////////////// 195 // プラグイン有効化での管理画面リダイレクト処理 e 196 ///////////////////////////////////////////////////////////////// -
aurora-design-blocks/trunk/readme.txt
r3421640 r3423670 10 10 == Description == 11 11 12 **✅ Manual: [Setup and Usage](https://integlight.auroralab-design.com/aurora-design-blocks/)** 13 <和訳>マニュアル:[設定方法と使い方](https://integlight.auroralab-design.com/aurora-design-blocks/) 12 ✅ Manual: [Setup and Usage](https://integlight.auroralab-design.com/aurora-design-blocks/) 14 13 15 14 Aurora Design Blocks is a multi-functional plugin that supports external asset management and provides essential features for content-rich websites. -
aurora-design-blocks/trunk/vendor/composer/installed.php
r3421640 r3423670 4 4 'pretty_version' => 'dev-free', 5 5 'version' => 'dev-free', 6 'reference' => ' aeff50a23064ccf79e05f6f0a2bc3da2f9978351',6 'reference' => '06722dcafbbfc358c42d741548eb8501ef9ce5de', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-free', 15 15 'version' => 'dev-free', 16 'reference' => ' aeff50a23064ccf79e05f6f0a2bc3da2f9978351',16 'reference' => '06722dcafbbfc358c42d741548eb8501ef9ce5de', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.