Files
roi-theme/wp-content/plugins/sociallocker-next-premium/plugin/admin/boot.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

228 lines
6.6 KiB
PHP
Executable File

<?php
/**
* A set of hooks for the admin part of the Social Locker plugin.
*
* @author Paul Kashtanoff <pavelkashtanoff@gmail.com>
* @copyright (c) 2014, OnePress
*
* @since 4.0.0
* @package sociallocker
*/
// ---
// Assets
//
/**
* Adds scripts and styles in the admin area.
*
* @see the 'admin_enqueue_scripts' action
*
* @since 1.0.0
* @return void
*/
function sociallocker_icon_admin_assets( $hook ) {
}
add_action('admin_enqueue_scripts', 'sociallocker_icon_admin_assets');
// ---
// Help
//
/**
* Registers a help section for the Connect Locker.
*
* @since 1.0.0
*/
function sociallocker_register_help( $pages ) {
global $opanda_help_cats;
if ( !$opanda_help_cats ) $opanda_help_cats = array();
array_unshift($pages, array(
'name' => 'sociallocker',
'title' => __('Plugin: Social Locker', 'plugin-sociallocker'),
'items' => array(
array(
'name' => 'social-locker',
'title' => __('Social Locker', 'plugin-sociallocker'),
'hollow' => true,
'items' => array(
array(
'name' => 'what-is-social-locker',
'title' => __('What is it?', 'plugin-sociallocker')
),
array(
'name' => 'usage-example-social-locker',
'title' => __('Quick Start Guide', 'plugin-sociallocker')
),
array(
'name' => 'gdpr-social-locker',
'title' => __('GDPR Compatibility', 'plugin-sociallocker')
)
/**
array(
'name' => 'other-notes-social-locker',
'title' => __('Other Notes', 'plugin-sociallocker')
)
*/
)
),
array(
'name' => 'signin-locker',
'title' => __('Sign-In Locker', 'plugin-sociallocker'),
'hollow' => true,
'items' => array(
array(
'name' => 'what-is-signin-locker',
'title' => __('What is it?', 'plugin-sociallocker')
),
array(
'name' => 'usage-example-signin-locker',
'title' => __('Quick Start Guide', 'plugin-sociallocker')
),
array(
'name' => 'gdpr-signin-locker',
'title' => __('GDPR Compatibility', 'plugin-sociallocker')
)
)
)
)
));
return $pages;
}
add_filter('opanda_help_pages', 'sociallocker_register_help');
/**
* Shows the intro page for the plugin Social Locker.
*
* @since 1.0.0
* @param FactoryPages321_AdminPage $manager
* @return void
*/
function sociallocker_help_page_optinpanda( $manager ) {
require SOCIALLOCKER_DIR . '/plugin/admin/pages/help/sociallocker.php';
}
add_action('opanda_help_page_sociallocker', 'sociallocker_help_page_optinpanda');
// ---
// Menu
//
/**
* Changes the menu title if the Social Locker is an only plugin installed from BizPanda.
*
* @since 1.0.0
* @return string A new menu title.
*/
function sociallocker_change_menu_title( $title ) {
//if ( !BizPanda::isSinglePlugin() ) return $title;
return __('Social Locker', 'plugin-sociallocker');
}
add_filter('opanda_menu_title', 'sociallocker_change_menu_title');
/**
* Changes the shortcode icon if the Social Locker is an only plugin installed from BizPanda.
*
* @since 1.0.0
* @return string A new menu title.
*/
function sociallocker_change_shortcode_icon( $icon ) {
if ( !BizPanda::isSinglePlugin() ) return $icon;
return SOCIALLOCKER_URL . '/plugin/admin/assets/img/shortcode-icon.png';
}
add_filter('opanda_shortcode_icon', 'sociallocker_change_shortcode_icon');
/**
* Changes the menu title of the page 'New Item' if the Social Locker is an only plugin installed from BizPanda.
*
* @since 1.0.0
* @return string A new menu title.
*/
function sociallocker_change_new_item_menu_title( $title ) {
if ( !BizPanda::isSinglePlugin() ) return $title;
return __('+ New Locker', 'plugin-sociallocker');
}
add_filter('factory_menu_title_new-item-opanda', 'sociallocker_change_new_item_menu_title');
/**
* Changes labels of Panda Items if the Social Locker is an only plugin installed from BizPanda.
*
* @since 4.0.0
* @return mixed A set of new labels
*/
function sociallocker_change_items_lables( $labels ) {
if ( !BizPanda::isSinglePlugin() ) return $labels;
$labels['all_items'] = __('All Lockers', 'plugin-sociallocker');
$labels['add_new'] = __('+ New Locker', 'plugin-sociallocker');
return $labels;
}
add_filter('opanda_items_lables', 'sociallocker_change_items_lables');
/**
* Makes internal page "License Manager" for the Social Locker
*
* @since 1.0.0
* @return bool true
*/
function sociallocker_make_internal_license_manager( $internal ) { global $sociallocker;
if ( in_array( $sociallocker->license->type, array( 'free' ) ) ) {
return $internal;
}
if ( BizPanda::isSinglePlugin() ) return $internal;
return true;
}
add_filter('factory_page_is_internal_license-manager-sociallocker-next', 'sociallocker_make_internal_license_manager');
/**
* Returns an URL of page "Go Premium".
*/
function onp_sl_get_premium_page_url( $url, $name, $campaign = 'na' ) {
if ( !empty( $name ) && !in_array( $name, array('social-locker', 'signin-locker') )) return $url;
if ( get_option('onp_sl_skip_trial', false) ) {
return onp_sl_get_premium_url( $campaign );
} else {
return admin_url('edit.php?post_type=opanda-item&page=premium-sociallocker-next');
}
}
add_filter('opanda_premium_url', 'onp_sl_get_premium_page_url', 10, 3);
/**
* Returns an URL where the user can purchaes the plugin.
*/
function onp_sl_get_premium_url( $campaign = 'na' ) {
global $sociallocker;
return onp_licensing_325_get_purchase_url( $sociallocker, $campaign );
}
#comp merge
require(SOCIALLOCKER_DIR . '/plugin/admin/activation.php');
require(SOCIALLOCKER_DIR . '/plugin/admin/notices.php');
require(SOCIALLOCKER_DIR . '/plugin/admin/pages/license-manager.php');
#endcomp