Server : nginx/1.24.0 System : Linux ip-172-31-33-48 6.14.0-1011-aws #11~24.04.1-Ubuntu SMP Fri Aug 1 02:07:25 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE Directory : /var/www/html/wp-content/plugins.off/sierotki/includes/iworks/ |
Upload File : |
<?php /* Copyright 2011-2025 Marcin Pietrzak (marcin@iworks.pl) this program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly /** * Main Orphans Class. * * @since 1.0.0 */ class iworks_orphan { private $options; private $admin_page; private $settings; private $plugin_file; /** * plugin root * * @since 2.9.0 */ private $root; /** * terms cache */ private $terms = array(); /** * Filter post meta. * * @since 2.7.0 */ private $meta_keys = null; /** * Filter post meta. * * @since 3.0.0 */ private $version = '3.3.8'; /** * tags to avoid replacement * * bevare - order is important, if you move script or style before iframe * or svg and thos tags have script or style - it will be broken * * @since 3.1.0 */ private $protected_tags = array( 'pre', 'code', 'iframe', 'svg', 'script', 'style', ); /** * nbsp placehlder * * @since 3.1.0 */ private $nbsp_placeholder = ' '; /** * semaphore - already attempt to create orphans table * * @since 3.2.4 */ private $orphans_where_loaded = false; /** * Loaded integrations objects * * @since 3.2.7 */ private $loaded_integrations = array(); public function __construct() { /** * basic settings */ $file = dirname( __DIR__, 2 ) . '/sierotki.php'; $this->root = dirname( $file ); /** * plugin ID */ $this->plugin_file = plugin_basename( $file ); /** * actions */ add_action( 'init', array( $this, 'init' ) ); add_action( 'init', array( $this, 'action_init_register_iworks_rate' ), PHP_INT_MAX ); add_action( 'admin_init', array( $this, 'admin_init' ) ); add_action( 'load-appearance_page_iworks_orphan_index', array( $this, 'clear_terms_cache' ) ); add_action( 'load-appearance_page_iworks_orphan_index', array( $this, 'load_classes' ) ); add_action( 'plugins_loaded', array( $this, 'send_json' ) ); add_action( 'plugins_loaded', array( $this, 'import_json' ) ); /** * clear cache terms after site langage was changed * * @since 3.2.4 */ add_action( 'update_option_WPLANG', array( $this, 'clear_terms_cache' ) ); /** * filters */ add_filter( 'orphan_replace', array( $this, 'orphan_replace_filter' ) ); /** * iWorks Rate Class */ add_filter( 'iworks_rate_notice_logo_style', array( $this, 'filter_plugin_logo' ), 10, 2 ); /** * get terms filter * * @since 3.1.0 */ add_filter( 'orphan_get_terms', array( $this, 'get_terms' ) ); /** * get post types filter * * @since 3.2.5 */ add_filter( 'index_iworks_orphan_post_type_data', array( $this, 'filter_index_iworks_orphan_post_type_data' ), 10, 3 ); /** * load github class * * @since 3.3.3 */ $filename = __DIR__ . '/orphans/class-iworks-orphans-github.php'; if ( is_file( $filename ) ) { include_once $filename; new iworks_orphans_github(); } } /** * base replacement function */ public function replace( $content ) { /** * Filter to allow skip replacement. * * @since 2.7.7 */ if ( apply_filters( 'orphan_skip_replacement', false ) ) { return $content; } /** * do not replace empty content */ if ( empty( $content ) ) { return $content; } /** * we do not need this in admin */ if ( is_admin() ) { return $content; } /** * we do not need this in feed * * @since 2.7.6 */ if ( is_feed() ) { return $content; } /** * we do not need this in REST API * * @since 2.7.6 */ if ( defined( 'REST_REQUEST' ) && REST_REQUEST ) { return $content; } /** * check post type */ $entry_related_filters = array( 'the_title', 'the_excerpt', 'the_content' ); $current_filter = current_filter(); if ( in_array( $current_filter, $entry_related_filters ) ) { if ( empty( $this->settings['post_type'] ) || ! is_array( $this->settings['post_type'] ) ) { return $content; } global $post; if ( is_a( $post, 'WP_Post' ) && ! in_array( $post->post_type, $this->settings['post_type'] ) ) { return $content; } } /** * check taxonomy */ if ( 'term_description' == $current_filter ) { if ( empty( $this->settings['taxonomies'] ) || ! is_array( $this->settings['taxonomies'] ) ) { return $content; } $queried_object = get_queried_object(); if ( ! in_array( $queried_object->taxonomy, $this->settings['taxonomies'] ) ) { return $content; } } /** * Allow to ignore language. * * @since 2.6.7 */ $all_languages = $this->is_on( 'ignore_language' ); $apply_to_all_languages = apply_filters( 'iworks_orphan_apply_to_all_languages', $all_languages ); if ( ! $apply_to_all_languages ) { /** * apply other rules only for Polish language */ $locale = apply_filters( 'wpml_current_language', get_locale() ); /** * polylang integration * * @since 3.1.0 */ if ( function_exists( 'pll_current_language' ) ) { $locale = pll_current_language( 'slug' ); } /** * allowed langages: pl_PL & cs_CZ * * @since 3.2.0 The cs_CZ has been added. */ if ( ! preg_match( '/^(pl|cs)/', $locale ) ) { return $content; } } /** * finally just replace! */ return $this->unconditional_replacement( $content ); } /** * Replacement wrapper function for two params filters * * Replacement wrapper function for two params filters allow to check menu * the_tilte settings. * * @since 2.9.4 */ public function replace_two( $content, $object_id = null ) { if ( empty( $object_id ) ) { return $content; } /** * Check for menu title * * @since 2.9.4 */ if ( 'nav_menu_item' === get_post_type( $object_id ) ) { if ( isset( $this->settings['menu_title'] ) && 0 === $this->settings['menu_title'] ) { return $content; } } return $this->replace( $content ); } /** * Parse DOMElement Object * * @since 3.1.0 */ private function parse_item( $item ) { /** * no tags, replace */ if ( ! preg_match( '/</', $item->innertext ) ) { $item->innertext = $this->string_replacement( $item->innertext ); return; } /** * split to slices & replace! */ preg_match_all( '/<[^>]+>/', $item->innertext, $matches ); $text_array = preg_split( '/<[^>]+>/', $item->innertext ); $text = ''; $max = sizeof( $text_array ); for ( $i = 0;$i < $max;$i++ ) { $text .= $this->string_replacement( $text_array[ $i ] ); if ( isset( $matches[0][ $i ] ) ) { $text .= $matches[0][ $i ]; } } $item->innertext = $text; return; } /** * String replacement with super-base check is replacement even * possible. * * @since 3.1.0 * * @param string $content String to replace * * @return string $content */ private function string_replacement( $content ) { /** * only super-base check */ if ( ! is_string( $content ) || empty( $content ) ) { return $content; } /** * Keep numbers together - this is independed of current language */ $numbers = $this->is_on( 'numbers' ); if ( $numbers ) { preg_match_all( '/(>[^<]+<)/', $content, $parts ); if ( $parts && is_array( $parts ) && ! empty( $parts ) ) { $parts = array_shift( $parts ); foreach ( $parts as $part ) { $to_change = $part; while ( preg_match( '/(\d+) ([\da-z]+)/i', $to_change, $matches ) ) { $to_change = preg_replace( '/(\d+) ([\da-z]+)/i', '$1' . $this->nbsp_placeholder . '$2', $to_change ); } if ( $part != $to_change ) { $content = str_replace( $part, $to_change, $content ); } } } } /** * Chunk terms * * @since 2.7.6 */ $terms = $this->_terms(); $terms_terms = array_chunk( $terms, 10 ); /** * avoid to replace tags content * * @since 2.9.4 */ $content_array = array( $content ); if ( preg_match( '/</', $content ) ) { $content_array = preg_split( '/<[^>]+>/', $content ); } foreach ( $content_array as $part_source ) { $part_to_change = $part_source; foreach ( $terms_terms as $terms ) { /** * base therms replace */ $re = '/^([aiouwz]|' . preg_replace( '/\./', '\.', implode( '|', $terms ) ) . ') +/i'; $part_to_change = preg_replace( $re, '$1$2' . $this->nbsp_placeholder, $part_to_change ); /** * single letters */ $re = '/([ >\(]+|' . $this->nbsp_placeholder . '|„|")([aiouwz]|' . preg_replace( '/\./', '\.', implode( '|', $terms ) ) . ') +/i'; /** * double call to handle orphan after orphan after orphan */ $part_to_change = preg_replace( $re, '$1$2' . $this->nbsp_placeholder, $part_to_change ); $part_to_change = preg_replace( $re, '$1$2' . $this->nbsp_placeholder, $part_to_change ); } if ( $part_source !== $part_to_change ) { $content = str_replace( $part_source, $part_to_change, $content ); } } /** * single letter after previous orphan */ $re = '/(' . $this->nbsp_placeholder . ')([aiouwz]) +/i'; $content = preg_replace( $re, '$1$2' . $this->nbsp_placeholder, $content ); /** * bring back styles & scripts */ if ( ! empty( $exceptions ) && is_array( $exceptions ) ) { foreach ( $exceptions as $key => $one ) { $re = sprintf( '/%s/', $key ); $content = preg_replace( $re, $one, $content ); } } /** * revert replaced attributes */ if ( ! empty( $attributes ) ) { foreach ( $attributes as $to_change => $part ) { $content = str_replace( $part, $to_change, $content ); } } /** * year short version * * @since 3.0.4 */ $content = preg_replace( '/(\d) r\./', '$1' . $this->nbsp_placeholder . 'r.', $content ); /** * return */ return $content; } /** * Unconditional replacement with super-base check is replacement even * possible. * * @since 2.7.8 * @since 3.1.0 - changed into DOM parsing * * * @param string $content String to replace * * @return string $content */ private function unconditional_replacement( $content ) { if ( ! is_string( $content ) || empty( $content ) ) { return $content; } /** * string, no tags */ if ( wp_strip_all_tags( $content ) === $content ) { return $this->string_replacement( $content ); } /** * parse */ $doc = str_get_html( $content, false, false, DEFAULT_TARGET_CHARSET, false ); /** * check */ if ( false === $doc ) { return $content; } /** * remove protected tags */ $protected = array(); foreach ( $this->protected_tags as $tag ) { foreach ( $doc->find( $tag ) as $item ) { $key = md5( $item->outertext ); $protected[ $key ] = $item->outertext; $item->outertext = $key; } } /** * replace */ $this->parse_item( $doc->root ); /** * save replaced doc */ $out = $doc->save(); /** * revert protected tags */ if ( ! empty( $protected ) ) { foreach ( $protected as $key => $outertext ) { $out = str_replace( $key, $outertext, $out ); } } return $out; } /** * Inicialize admin area */ public function admin_init() { add_filter( 'plugin_action_links_' . $this->plugin_file, array( $this, 'add_settings_link' ) ); } /** * Initialize, but not for admin */ public function init() { /** * options */ $this->check_option_object(); /** * Replace in Translations functions. * * Since 3.1.0 */ if ( $this->options->get_option( 'gettext' ) ) { add_filter( 'gettext', array( $this, 'filter_gettext' ), 10, 3 ); } /** * Turn off all replacements for admin area - we do not need it! */ if ( is_admin() ) { return; } if ( empty( $this->settings ) ) { $this->settings = $this->options->get_all_options(); } /** * Filter allowed filters. * * @since 2.9.4 * * @param array $args { * Array of filters, array key as filter. * * @type integer priority Filter priority. * @type integer accepted_args Filter number of accepted args. */ $allowed_filters = apply_filters( 'orphan_allowed_filters', array( 'the_title' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 2, ), 'the_excerpt' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 1, ), 'the_content' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 1, ), 'comment_text' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 1, ), 'widget_title' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 1, ), 'widget_text' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 1, ), 'term_description' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 1, ), 'get_the_author_description' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 1, ), 'widget_block_content' => array( 'priority' => PHP_INT_MAX, 'accepted_args' => 1, ), ) ); foreach ( $this->settings as $filter => $value ) { if ( ! array_key_exists( $filter, $allowed_filters ) ) { continue; } $priority = isset( $allowed_filters[ $filter ]['priority'] ) ? $allowed_filters[ $filter ]['priority'] : PHP_INT_MAX; if ( is_integer( $value ) && 1 == $value ) { if ( 2 === $allowed_filters[ $filter ]['accepted_args'] ) { add_filter( $filter, array( $this, 'replace_two' ), $priority, 2 ); } else { add_filter( $filter, array( $this, 'replace' ), $priority ); } /** * WooCommerce exception: short descripton */ if ( 'the_excerpt' === $filter ) { add_filter( 'woocommerce_short_description', array( $this, 'replace' ), $priority ); } } } /** * taxonomies */ if ( 1 == $this->settings['taxonomy_title'] && ! empty( $this->settings['taxonomies'] ) ) { add_filter( 'single_term_title', array( $this, 'replace' ) ); if ( in_array( 'category', $this->settings['taxonomies'] ) ) { add_filter( 'single_cat_title', array( $this, 'replace' ) ); } if ( in_array( 'post_tag', $this->settings['taxonomies'] ) ) { add_filter( 'single_tag_title', array( $this, 'replace' ) ); } } add_filter( 'iworks_orphan_replace', array( $this, 'replace' ) ); /** * Filter post meta. * * @since 2.7.0 */ add_filter( 'get_post_metadata', array( $this, 'filter_post_meta' ), 10, 4 ); /** * Integrations: Advanced Custom Fields * * @since 2.9.1 */ foreach ( array( 'text', 'textarea', 'wysiwyg' ) as $type ) { if ( $this->is_on( 'acf_' . $type ) ) { add_filter( 'acf/format_value/type=' . $type, array( $this, 'filter_acf' ), 10, 3 ); } } /** * Integrations: WP Bakery * * @since 3.0.2 */ add_filter( 'vc_shortcode_output', array( $this, 'replace' ) ); /** * Integrations: Goodlayers Core * * @since 3.0.4 */ add_filter( 'gdlr_core_escape_content', array( $this, 'replace' ) ); /** * Filter allowed change protected tags. * * @since 3.1.0 * * @param array $args { * Array of protected tags - all content of this tags will be not * replaced * * @type string HTML tag name. */ $this->protected_tags = apply_filters( 'iworks_orphan_protected_tags', $this->protected_tags ); /** * Integrations: Muffin builder * * @since 3.1.3 */ add_filter( 'mfn_builder_items_show', array( $this, 'integration_filter_mfn_builder_items_show' ), 200 ); /** * Integrations: Divi * * @since 3.2.1 */ add_filter( 'et_pb_module_content', array( $this, 'integration_filter_et_pb_module_content' ), 200, 6 ); /** * Integrations: Bricks - Visual Site Builder for WordPress * * @since 3.2.7 */ if ( defined( 'BRICKS_VERSION' ) && BRICKS_VERSION ) { include_once __DIR__ . '/integrations/class-iworks-orphans-integration-bricks.php'; $this->loaded_integrations['class-iworks-orphans-integration-bricks'] = new iWorks_Orphans_Integration_Bricks( $this ); } } /** * Is key turned on? * * @param string $key Settings key. * * @return boolean Is this key setting turned on? */ private function is_on( $key ) { return isset( $this->settings[ $key ] ) && 1 === $this->settings[ $key ]; } /** * Add settings link to plugin_action_links. * * @since 2.6.8 * * @param array $actions An array of plugin action links. */ public function add_settings_link( $actions ) { $this->check_option_object(); $page = $this->options->get_pagehook(); $url = add_query_arg( 'page', $page, admin_url( 'themes.php' ) ); $actions[] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Settings', 'sierotki' ) ); return $actions; } /** * Replace orphans in custom fields. * * @since 2.7.0 * * @param null|bool $check Whether to allow adding metadata for the given type. * @param int $object_id Object ID. * @param string $meta_key Meta key. * @param mixed $meta_value Meta value. Must be serializable if non-scalar. * @param bool $unique Whether the specified meta key should be unique * for the object. Optional. Default false. * @return null|bool|string $value Post meta value with orphans rules. */ public function filter_post_meta( $check, $object_id, $meta_key, $unique ) { if ( ! $unique ) { return $check; } if ( false === $this->meta_keys ) { return $check; } if ( null === $this->meta_keys ) { $this->check_option_object(); $value = $this->options->get_option( 'post_meta' ); if ( empty( $value ) || ! is_string( $value ) ) { return $check; } $value = explode( ',', trim( $value ) ); $this->meta_keys = array_map( 'trim', $value ); } if ( empty( $this->meta_keys ) ) { $this->meta_keys = false; return $check; } if ( ! in_array( $meta_key, $this->meta_keys ) ) { return $check; } remove_filter( 'get_post_metadata', array( $this, 'filter_post_meta' ), 10, 4 ); $value = get_post_meta( $object_id, $meta_key, true ); add_filter( 'get_post_metadata', array( $this, 'filter_post_meta' ), 10, 4 ); if ( ! empty( $value ) ) { return $this->replace( $value ); } return $check; } /** * get terms array * * @since 2.7.1 * * @return $terms array Array of terms to replace. */ private function _terms() { /** * Transients * * @since 3.0.0 */ $cache_name = 'orphan_terms' . $this->version; $terms = get_transient( $cache_name ); if ( empty( $terms ) ) { $terms = array(); } else { $this->terms = $terms; } /** * if already set */ if ( ! empty( $this->terms ) ) { $terms = $this->terms; $terms = apply_filters( 'iworks_orphan_therms', $terms ); $terms = apply_filters( 'iworks_orphan_terms', $terms ); return $terms; } $terms = array(); /** * semaphore - already attempt to create orphans table * * @since 3.2.4 */ if ( $this->orphans_where_loaded ) { return $terms; } $this->orphans_where_loaded = true; /** * check option object * * @since 3.3.2 */ $this->check_option_object(); /** * set file name * * @since 3.2.0 */ $locale = $this->options->get_option( 'language' ); if ( 'function_get_locale' === $locale ) { $locale = get_locale(); } if ( ! empty( $locale ) ) { /** * multiple files * * @since 3.2.4 */ $files = array( sprintf( 'terms-%s.txt', $locale ), sprintf( 'terms-%s.txt', preg_replace( '/_[A-Z]+$/', '', $locale ) ), apply_filters( 'iworks_orphan_own_terms_filename', sprintf( 'terms-%s.txt', $locale ) ), ); /** * read terms from file * * @since 2.9.0 */ $files = array_unique( $files ); $files_with_path = array(); foreach ( $files as $file ) { $files_with_path[] = apply_filters( 'iworks_orphan_own_terms_file', sprintf( '%s/etc/%s', $this->root, $file ), $file ); } /** * Filter allow to change files array. * * @since 2.9.0 */ $files_with_path = apply_filters( 'iworks_orphan_terms_files_array', $files_with_path ); /** * handle multiple files */ if ( ! class_exists( 'WP_Filesystem_Direct' ) ) { include_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-base.php'; include_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-direct.php'; } $filesystem = new WP_Filesystem_Direct( true ); foreach ( $files_with_path as $file ) { if ( is_file( $file ) && is_readable( $file ) ) { $data = preg_split( '/[\r\n]/', $filesystem->get_contents( $file ) ); foreach ( $data as $term ) { if ( preg_match( '/^#/', $term ) ) { continue; } $term = trim( $term ); if ( empty( $term ) ) { continue; } $terms[] = $term; } } } } /** * get own orphans */ $own_orphans = get_option( 'iworks_orphan_own_orphans', '' ); if ( $own_orphans ) { $own_orphans = preg_replace( '/\,\+/', ',', $own_orphans ); $terms = array_merge( $terms, preg_split( '/,[ \t]*/', strtolower( $own_orphans ) ) ); } /** * remove duplicates */ $terms = array_unique( $terms ); /** * decode */ $a = array(); foreach ( $terms as $t ) { $a[] = strtolower( html_entity_decode( $t ) ); } $terms = $a; /** * remove empty elements */ $terms = array_filter( $terms ); /** * remove duplicates & sort * * @since 2.9.7 */ $terms = array_unique( $terms ); sort( $terms ); /** * assign to class property */ $this->terms = $terms; /** * filter it */ $terms = apply_filters( 'iworks_orphan_therms', $terms ); $terms = apply_filters( 'iworks_orphan_terms', $terms ); /** * Transients * * @since 3.0.0 */ set_transient( $cache_name, $terms, DAY_IN_SECONDS ); /** * set */ $this->terms = $terms; return $terms; } /** * Filter to use Orphans on any string * * @since 2.7.8 * * @param string $content String to replace * * @return string $content */ public function orphan_replace_filter( $content ) { if ( ! is_string( $content ) ) { return $content; } if ( empty( $content ) ) { return $content; } return $this->unconditional_replacement( $content ); } /** * Plugin logo for rate messages * * @since 2.7.9 * * @param string $logo Logo, can be empty. * @param object $plugin Plugin basic data. */ public function filter_plugin_logo( $logo, $plugin ) { if ( is_object( $plugin ) ) { $plugin = (array) $plugin; } if ( 'sierotki' === $plugin['slug'] ) { return plugin_dir_url( dirname( __DIR__, 1 ) ) . 'assets/images/logo.svg'; } return $logo; } /** * Replace in Translations functions. * * Since 3.1.0 */ public function filter_gettext( $translation, $text, $domain ) { /** * do not replace in admin * * @since 3.3.5 */ if ( is_admin() ) { return $translation; } /** * Replace in gettext? * * Fillter allow to turn off replacement depend on params. * * @since 3.1.0 * * @param boolean * @param string $translation * @param string $text * @param string $domain Translation domain. */ if ( apply_filters( 'orphan_replace_gettext', true, $translation, $text, $domain ) ) { return $this->unconditional_replacement( $translation ); } return $translation; } /** * Replace in ACF field * * Since 3.1.0 * * @param $value (mixed) The field value. * @param $post_id (int|string) The post ID where the value is saved. * @param $field (array) The field array containing all settings. */ public function filter_acf( $value, $post_id, $field ) { /** * Replace in ACF field? * * Fillter allow to turn off replacement depend on params. * * @since 3.1.0 * * @param boolean * @param $value (mixed) The field value. * @param $post_id (int|string) The post ID where the value is saved. * @param $field (array) The field array containing all settings. */ if ( apply_filters( 'orphan_replace_acf', true, $value, $post_id, $field ) ) { return $this->unconditional_replacement( $value ); } return $value; } /** * Clear terms cache * * @since 3.1.0 */ public function clear_terms_cache() { $cache_name = 'orphan_terms' . $this->version; delete_transient( $cache_name ); add_action( 'shutdown', array( $this, 'action_shutdown_orphans_indicator_options' ) ); } /** * Delete `orphans_indicator_options` cache. * * @since 3.2.3 */ public function action_shutdown_orphans_indicator_options() { wp_cache_delete( 'orphans_indicator_options' ); } /** * get terms * * @since 3.1.0 */ public function get_terms() { return $this->_terms(); } /** * Integrations: Muffin builder (beTheme) recurence helper * * @since 3.1.3 */ private function mnf_builder_herlper( $items ) { if ( is_array( $items ) ) { foreach ( $items as $key => &$item ) { if ( is_array( $item ) ) { $item = $this->mnf_builder_herlper( $item ); } elseif ( 'content' === $key && is_string( $item ) ) { $item = $this->unconditional_replacement( $item ); } } } return $items; } /** * Integrations: Muffin builder (beTheme) * * @since 3.1.3 */ public function integration_filter_mfn_builder_items_show( $mfn_items ) { return $this->mnf_builder_herlper( $mfn_items ); } /** * Integrations: Divi * * @since 3.2.1 */ public function integration_filter_et_pb_module_content( $content, $props, $attrs, $render_slug, $_address, $global_content ) { return $this->unconditional_replacement( $content ); } /** * get post types * * @since 3.2.5 */ public function filter_index_iworks_orphan_post_type_data( $options, $option_name, $option_value ) { $args = apply_filters( 'iworks_orphan_get_post_types_args', array( 'public' => true, ) ); $post_types = get_post_types( $args, 'names' ); foreach ( $post_types as $post_type ) { $a = get_post_type_object( $post_type ); $p[ $post_type ] = $a->labels->name; } asort( $p ); return $p; } /** * Send JSON File * * @since 3.3.0 */ public function send_json() { $nonce_value = filter_input( INPUT_POST, 'nonce' ); if ( empty( $nonce_value ) ) { return; } if ( ! wp_verify_nonce( $nonce_value, 'iworks_orphan_export' ) ) { return; } $this->load_classes(); $this->loaded_integrations['export']->send_json(); wp_send_json_error(); } /** * Upload JSON File * * @since 3.3.0 */ public function import_json() { $nonce_value = filter_input( INPUT_POST, 'nonce' ); if ( empty( $nonce_value ) ) { return; } if ( ! wp_verify_nonce( $nonce_value, 'iworks_orphan_import' ) ) { return; } $this->load_classes(); $this->loaded_integrations['import']->import_json(); } public function load_classes() { include_once __DIR__ . '/orphans/class-iworks-orphans-export.php'; $this->loaded_integrations['export'] = new iWorks_Orphans_Export(); include_once __DIR__ . '/orphans/class-iworks-orphans-import.php'; $this->loaded_integrations['import'] = new iWorks_Orphans_Import(); } /** * register plugin to iWorks Rate Helper * * @since 3.3.1 */ public function action_init_register_iworks_rate() { if ( ! class_exists( 'iworks_rate' ) ) { include_once __DIR__ . '/rate/rate.php'; } do_action( 'iworks-register-plugin', plugin_basename( $this->plugin_file ), __( 'Orphans', 'sierotki' ), 'sierotki' ); } /** * check option object * * @since 3.3.2 */ private function check_option_object() { if ( is_a( $this->options, 'iworks_options' ) ) { return; } $this->options = get_orphan_options(); } }