dispatch_hooks();
add_filter( 'upload_mimes', [ $self, 'allow_lottie_json_uploads' ] );
add_filter( 'wp_check_filetype_and_ext', function ( $data, $file, $filename ) {
$ext = pathinfo( $filename, PATHINFO_EXTENSION );
if ( 'json' === $ext ) {
$data['ext'] = 'json';
$data['type'] = 'application/json';
}
return $data;
}, 10, 3 );
}
function allow_lottie_json_uploads( $mimes ) {
$mimes['json'] = 'application/json';
$mimes['lottie'] = 'application/json';
return $mimes;
}
public function dispatch_hooks() {
Admin\Menu::init();
\ABlocks\CreatePage\page\ShowPageState::init();
Admin\Export::init();
Admin\Notice::init();
add_filter( 'allowed_redirect_hosts', array( $this, 'add_white_listed_redirect_hosts' ) );
add_action( 'current_screen', array( $this, 'conditional_loaded' ) );
add_filter( 'plugin_action_links_' . ABLOCKS_PLUGIN_BASENAME, array( $this, 'plugin_action_links' ) );
add_filter( 'plugin_row_meta', array( $this, 'add_plugin_links' ), 10, 2 );
add_action( 'admin_init', array( $this, 'dispatch_activation_redirect' ), 99 );
$this->dispatch_insights();
}
public function add_white_listed_redirect_hosts( $hosts ) {
$hosts[] = 'ablocks.pro';
return $hosts;
}
public function conditional_loaded() {
$screen = get_current_screen();
if ( ! $screen ) {
return;
}
switch ( $screen->id ) {
case 'ablocks_page_ablocks-get-pro':
wp_safe_redirect( 'https://ablocks.pro/pricing/' );
exit;
}
}
public function add_plugin_links( $links, $file ) {
if ( ABLOCKS_PLUGIN_BASENAME !== $file ) {
return $links;
}
$map_block_links = array(
'docs' => array(
'url' => 'https://ablocks.pro/docs/',
'label' => __( 'Docs', 'ablocks' ),
'aria-label' => __( 'View aBlocks documentation', 'ablocks' ),
),
'video' => array(
'url' => 'https://www.youtube.com/@ablocksteam',
'label' => __( 'Video Tutorials', 'ablocks' ),
'aria-label' => __( 'See Video Tutorials', 'ablocks' ),
),
'support' => array(
'url' => 'https://wordpress.org/support/plugin/ablocks/',
'label' => __( 'Community Support', 'ablocks' ),
'aria-label' => __( 'Visit community forums', 'ablocks' ),
),
'review' => array(
'url' => 'https://wordpress.org/support/plugin/ablocks/reviews/#new-post',
'label' => __( 'Rate the plugin ★★★★★', 'ablocks' ),
'aria-label' => __( 'Rate the plugin.', 'ablocks' ),
),
);
foreach ( $map_block_links as $key => $link ) {
$links[ $key ] = sprintf(
'%s',
esc_url( $link['url'] ),
esc_attr( $link['aria-label'] ),
esc_html( $link['label'] )
);
}
return $links;
}
public function plugin_action_links( $links ) {
$settings_link = sprintf( '%2$s', admin_url( 'admin.php?page=ablocks' ), esc_html__( 'Settings', 'ablocks' ) );
array_unshift( $links, $settings_link );
if ( ! defined( 'ABLOCKS_PRO_VERSION' ) ) {
$links['go_pro'] = sprintf( '%2$s', 'https://ablocks.pro/pricing/', esc_html__( 'Get aBlocks Pro', 'ablocks' ) );
}
return $links;
}
public function dispatch_activation_redirect() {
if ( get_option( 'ablocks_need_activation_redirect', false ) ) {
delete_option( 'ablocks_need_activation_redirect' );
wp_safe_redirect( admin_url( 'admin.php?page=ablocks' ) );
exit;
}
}
public function dispatch_insights() {
Admin\Insights::init(
'https://kodezen.com',
ABLOCKS_PLUGIN_SLUG,
'plugin',
ABLOCKS_VERSION,
[
'logo' => ABLOCKS_ASSETS_URL . 'images/logo-shape.svg', // default logo URL
'optin_message' => 'Help improve aBlocks LMS! Allow anonymous usage tracking?',
'deactivation_message' => 'If you have a moment, please share why you are deactivating aBlocks:',
'deactivation_reasons' => [
'no_longer_needed' => [
'label' => 'I no longer need the plugin',
],
'found_a_better_plugin' => [
'label' => 'I found a better plugin',
'has_custom_reason' => true,
'custom_reason_placeholder' => 'Please share which plugin',
],
'couldnt_get_the_plugin_to_work' => [
'label' => 'I couldn\'t get the plugin to work',
],
'temporary_deactivation' => [
'label' => 'It\'s a temporary deactivation',
],
'have_academy_pro' => [
'label' => 'I have aBlocks Pro',
'toggle_text' => 'Wait! Don\'t deactivate aBlocks. You have to activate both aBlocks and aBlocks Pro in order for the plugin to work.',
],
'other' => [
'label' => 'Other',
'has_custom_reason' => true,
'custom_reason_placeholder' => 'Please share the reason',
],
],
]
);
}
}