Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
vikbooking
/
libraries
/
adapter
/
component
:
helper.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @package VikWP - Libraries * @subpackage adapter.component * @author E4J s.r.l. * @copyright Copyright (C) 2023 E4J s.r.l. All Rights Reserved. * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL * @link https://vikwp.com */ // No direct access defined('ABSPATH') or die('No script kiddies please!'); JLoader::import('adapter.component.registry'); /** * Component helper class * * @since 10.0 */ class JComponentHelper { /** * Gets the parameter object for the component. * * @param string $option The option for the component. * @param boolean $strict If set and the component does not exist, false will be returned. * * @return JComponentRegistry */ public static function getParams($option, $strict = false) { return new JComponentRegistry($option); } /** * Get the component information. * * @param string $option The component option. * @param boolean $strict If set and the component does not exist, the enabled attribute will be set to false. * * @return mixed An object with the information for the component. * * @since 10.1.16 */ public static function getComponent($option, $strict = false) { // always return NULL on WordPress to avoid triggering native Joomla updates return null; } /** * Applies the global text filters to arbitrary text as per settings for current user groups. * * @param string $text The string to filter. * * @return string The filtered string. * * @since 10.1.33 */ public static function filterText($text) { // get all tags and attributes supported by WordPress $allowed = wp_kses_allowed_html('post'); // always support iframe, mainly for YouTube videos $allowed['iframe'] = array( 'name' => true, 'src' => true, 'width' => true, 'height' => true, 'allow' => true, 'allowfullscreen' => true, ); /** * Sanitize HTML by using wp_kses. * It is possible to extend the supported HTML tags by * using the "wp_kses_allowed_html" hook. */ return wp_kses(wp_unslash($text), $allowed); } }