File manager - Edit - /home/verseaumee/lauvia/wp-content/plugins/trx_addons/components/api/quickcal/quickcal-demo-importer.php
Back
<?php /** * Plugin support: QuickCal (Importer support) * * @package ThemeREX Addons * @since v2.26.0 */ // Don't load directly if ( ! defined( 'TRX_ADDONS_VERSION' ) ) { exit; } if ( ! function_exists( 'trx_addons_quickcal_importer_required_plugins' ) ) { add_filter( 'trx_addons_filter_importer_required_plugins', 'trx_addons_quickcal_importer_required_plugins', 10, 2 ); /** * Check if QuickCal is installed and add it to the required plugins list * * @hooked trx_addons_filter_importer_required_plugins * * @param string $not_installed Not installed plugins list * @param string $list Plugins list * * @return string Not installed plugins list */ function trx_addons_quickcal_importer_required_plugins( $not_installed = '', $list = '' ) { if ( strpos( $list, 'quickcal' ) !== false && ! trx_addons_exists_quickcal() ) { $not_installed .= '<br>' . esc_html__('QuickCal', 'trx_addons'); } return $not_installed; } } if ( ! function_exists( 'trx_addons_quickcal_importer_set_options' ) ) { add_filter( 'trx_addons_filter_importer_options', 'trx_addons_quickcal_importer_set_options', 10, 1 ); /** * Add plugin's specific options to the export options list * * @hooked trx_addons_filter_importer_options * * @param array $options Importer options * * @return array Modified options */ function trx_addons_quickcal_importer_set_options( $options = array() ) { if ( trx_addons_exists_quickcal() && in_array( 'quickcal', $options['required_plugins'] ) ) { $options['additional_options'][] = 'quickcal_%'; // Add slugs to export options of this plugin $options['additional_options'][] = 'booked_%'; // Attention! QuickCal use Booked plugin options } return $options; } } if ( ! function_exists( 'trx_addons_quickcal_importer_check_options' ) ) { add_filter( 'trx_addons_filter_import_theme_options', 'trx_addons_quickcal_importer_check_options', 10, 4 ); /** * Prevent to import plugin's specific options if plugin is not installed * * @hooked trx_addons_filter_import_theme_options * * @param boolean $allow Allow import or not * @param string $k Option name * @param string $v Option value * @param array $list List of required plugins * * @return boolean Allow import or not */ function trx_addons_quickcal_importer_check_options( $allow, $k, $v, $options ) { if ( strpos( $k, 'quickcal_' ) === 0 || strpos( $k, 'booked_' ) === 0 ) { $allow = ( trx_addons_exists_quickcal() && in_array( 'quickcal', $options['required_plugins'] ) ) || ( function_exists( 'trx_addons_exists_booked' ) && trx_addons_exists_booked() && in_array( 'booked', $options['required_plugins'] ) ); } return $allow; } } if ( ! function_exists( 'trx_addons_quickcal_importer_check_row' ) ) { add_filter( 'trx_addons_filter_importer_import_row', 'trx_addons_quickcal_importer_check_row', 9, 4 ); /** * Check if row will be imported to the table 'wp_posts' * * @hooked trx_addons_filter_importer_import_row * * @param boolean $flag Allow import or not * @param string $table Table name * @param array $row Row data * @param array $list List of required plugins * * @return boolean Allow import or not */ function trx_addons_quickcal_importer_check_row( $flag, $table, $row, $list ) { if ( $flag || strpos( $list, 'quickcal' ) === false ) { return $flag; } if ( trx_addons_exists_quickcal() || ( function_exists( 'trx_addons_exists_booked' ) && trx_addons_exists_booked() ) ) { if ( $table == 'posts' ) { $flag = in_array( $row['post_type'], array( 'quickcal_appointments', 'booked_appointments' ) ); } } return $flag; } } if ( ! function_exists( 'trx_addons_quickcal_export_options' ) ) { add_filter( 'trx_addons_filter_export_options', 'trx_addons_quickcal_export_options' ); /** * Export QuickCal options * * @param array $options Options to export * * @return array Modified options */ function trx_addons_quickcal_export_options( $options ) { // $options['quickcal_welcome_screen'] = false; $options['booked_welcome_screen'] = false; // Attention! QuickCal use Booked plugin options return $options; } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings