🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-06 22:26:46 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
blocksy-companion
/
framework
/
helpers
📍 /home/eliteewa/public_html/wp-content/plugins/blocksy-companion/framework/helpers
🔄 Refresh
✏️
Editing: exts.php
Writable
<?php if (! defined('ABSPATH')) { exit; } function blocksy_companion_exts_get_preliminary_config($ext = null, $args = []) { $args = wp_parse_args($args, [ 'only_billing_data' => false ]); $data = blocksy_companion_get_variables_from_file( dirname(__FILE__) . '/exts-configs.php', [ 'data' => [] ], [ 'only_billing_data' => $args['only_billing_data'] ] ); $data = $data['data']; if (! $ext || ! isset($data[$ext])) { return $data; } return $data[$ext]; } function blocksy_companion_get_ext($id, $args = []) { if (! \Blocksy\Plugin::instance()->extensions) { return null; } return \Blocksy\Plugin::instance()->extensions->get($id, $args); }
💾 Save Changes
❌ Cancel