<?php namespace FileBird\Classes; defined( 'ABSPATH' ) || exit; class Helpers { protected static $instance = null; public static function getInstance() { if ( null == self::$instance ) { self::$instance = new self(); } return self::$instance; } public static function sanitize_array( $var ) { if ( is_array( $var ) ) { return array_map( 'self::sanitize_array', $var ); } else { return is_scalar( $var ) ? sanitize_text_field( $var ) : $var; } } public static function sanitize_for_excel( $input ) { $dangerousCharacters = array( '=', '+', '-', '@', '|' ); while ( in_array( $input[0], $dangerousCharacters ) ) { $input = substr( $input, 1 ); } return $input; } public static function sanitize_intval_array( $var ) { if ( is_array( $var ) ) { return array_map( 'intval', $var ); } else { return intval( $var ); } } public static function getAttachmentIdsByFolderId( $folder_id ) { global $wpdb; return $wpdb->get_col( 'SELECT `attachment_id` FROM ' . $wpdb->prefix . 'fbv_attachment_folder WHERE `folder_id` = ' . (int) $folder_id ); } public static function getAttachmentCountByFolderId( $folder_id ) { return Tree::getCount( $folder_id ); } public static function view( $path, $data = array() ) { extract( $data ); ob_start(); include_once NJFB_PLUGIN_PATH . 'views/' . $path . '.php'; return ob_get_clean(); } public static function isListMode() { if ( function_exists( 'get_current_screen' ) ) { $screen = get_current_screen(); return ( isset( $screen->id ) && 'upload' == $screen->id ); } return false; } public static function wp_kses_i18n( $string ) { return wp_kses( $string, array( 'strong' => array(), 'a' => array( 'target' => array(), 'href' => array(), ), ) ); } public static function findFolder( $folder_id, $tree ) { $folder = null; foreach ( $tree as $k => $v ) { if ( $v['id'] == $folder_id ) { $folder = $v; break; } else { $folder = self::findFolder( $folder_id, $v['children'] ); if ( ! is_null( $folder ) ) { break; } else { continue; } } } return $folder; } public static function get_bytes( $post_id ) { $bytes = ''; $meta = wp_get_attachment_metadata( $post_id ); if ( isset( $meta['filesize'] ) ) { $bytes = $meta['filesize']; } else { $attached_file = get_attached_file( $post_id ); if ( file_exists( $attached_file ) ) { $bytes = \wp_filesize( $attached_file ); } } return $bytes; } public static function loadView( $view, $data = array(), $return_html = false ) { $viewPath = NJFB_PLUGIN_PATH . 'views/' . $view . '.php'; if ( ! file_exists( $viewPath ) ) { die( 'View <strong>' . esc_html( $viewPath ) . '</strong> not found!' ); } extract( $data ); if ( $return_html === true ) { ob_start(); include_once $viewPath; return ob_get_clean(); } include_once $viewPath; } public static function getDomain() { $url = get_site_url(); if ( $url == '' || $url == null ) { $url = home_url(); } $url = preg_replace( '#https?:\/\/#', '', $url ); return apply_filters( 'fbv_domain_for_activate', $url ); } public static function getIp() { return isset( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : ''; } public static function removeEmojis( $text ) { // Emoji Unicode ranges $emojiRegex = '/[\x{1F600}-\x{1F64F}]|[\x{1F300}-\x{1F5FF}]|[\x{1F680}-\x{1F6FF}]|[\x{1F700}-\x{1F77F}]|[\x{1F780}-\x{1F7FF}]|[\x{1F800}-\x{1F8FF}]|[\x{1F900}-\x{1F9FF}]|[\x{1FA00}-\x{1FA6F}]|[\x{2600}-\x{26FF}]|[\x{2700}-\x{27BF}]|\x{2B50}/u'; // Remove emojis from the text $textWithoutEmojis = preg_replace( $emojiRegex, '', $text ); return $textWithoutEmojis; } public static function isOptionCollationMb4() { global $wpdb; $query = $wpdb->get_row( "SHOW FULL COLUMNS FROM $wpdb->options LIKE 'option_value'" ); if ( is_object( $query ) && isset( $query->Collation ) ) { return strpos( $query->Collation, 'mb4' ) !== false; } else { return false; } } public static function array_to_in_clause( $array ) { // Escape each value and wrap it in single quotes $escaped_values = array_map( function( $value ) { // Escape the value to prevent SQL injection return "'" . esc_sql( $value ) . "'"; }, $array ); // Join the escaped values into a comma-separated string $values_string = implode( ', ', $escaped_values ); // Return the formatted string return $values_string; } }