# comments-plus/1.3.0/libs/factory/bootstrap/includes/functions.php

Disable Comments &amp; Delete All Comments, version 1.3.0. 243 lines.

- Page: https://pluginprobe.com/plugins/comments-plus/1.3.0/code/libs/factory/bootstrap/includes/functions.php
- Raw: https://pluginprobe.com/plugins/comments-plus/1.3.0/raw/libs/factory/bootstrap/includes/functions.php
- Modified: 2024-12-10T00:10:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/comments-plus/1.3.0/code/libs/factory/bootstrap/includes/functions.php#L10-L20`.

```php
<?php
/**
 * This file manages assets of the Factory Bootstap.
 *
 * @author        Alex Kovalev <alex@byonepress.com>
 * @author        Paul Kashtanoff <paul@byonepress.com>
 * @since         1.0.0
 * @package       factory-bootstrap
 * @copyright (c) 2018, OnePress Ltd
 *
 */

// Exit if accessed directly
if( !defined('ABSPATH') ) {
	exit;
}

/**
 * The Bootstrap Manager class.
 *
 * @since 3.2.0
 */
class Wbcr_FactoryBootstrap482_Manager {

	/**
	 * A plugin for which the manager was created.
	 *
	 * @since 3.2.0
	 * @var Wbcr_Factory480_Plugin
	 */
	public $plugin;

	/**
	 * Contains scripts to include.
	 *
	 * @since 3.2.0
	 * @var string[]
	 */
	public $scripts = [];

	/**
	 * Contains styles to include.
	 *
	 * @since 3.2.0
	 * @var string[]
	 */
	public $styles = [];

	/**
	 * Createas a new instance of the license api for a given plugin.
	 *
	 * @since 1.0.0
	 */
	public function __construct(Wbcr_Factory480_Plugin $plugin)
	{
		$this->plugin = $plugin;

		add_action('admin_enqueue_scripts', [$this, 'loadAssets']);
		add_filter('admin_body_class', [$this, 'adminBodyClass']);
	}

	/**
	 * Includes the Bootstrap scripts.
	 *
	 * @param array|string $scripts
	 * @since 3.2.0
	 *
	 */
	public function enqueueScript($scripts)
	{
		if( is_array($scripts) ) {
			foreach($scripts as $script) {
				if( !in_array($script, $this->scripts) ) {
					$this->scripts[] = $script;
				}
			}
		} else {
			if( !in_array($scripts, $this->scripts) ) {
				$this->scripts[] = $scripts;
			}
		}
	}

	/**
	 *  * Includes the Bootstrap styles.
	 *
	 * @param array|string $styles
	 * @since 3.2.0
	 *
	 */
	public function enqueueStyle($styles)
	{

		if( is_array($styles) ) {
			foreach($styles as $style) {
				if( !in_array($style, $this->styles) ) {
					$this->styles[] = $style;
				}
			}
		} else {
			if( !in_array($styles, $this->styles) ) {
				$this->styles[] = $styles;
			}
		}
	}

	/**
	 * Loads Bootstrap assets.
	 *
	 * @return void
	 * @since 3.2.0
	 * @see   admin_enqueue_scripts
	 *
	 */
	public function loadAssets($hook)
	{

		do_action('wbcr_factory_480_bootstrap_enqueue_scripts', $hook);
		do_action('wbcr_factory_480_bootstrap_enqueue_scripts_' . $this->plugin->getPluginName(), $hook);

		$dependencies = [];
		if( !empty($this->scripts) ) {
			$dependencies[] = 'jquery';
			$dependencies[] = 'jquery-ui-core';
			$dependencies[] = 'jquery-ui-widget';
		}

		foreach($this->scripts as $script) {
			switch( $script ) {
				case 'plugin.iris':
					$dependencies[] = 'jquery-ui-widget';
					$dependencies[] = 'jquery-ui-slider';
					$dependencies[] = 'jquery-ui-draggable';
					break;
			}
		}

		if( !empty($this->scripts) ) {
			$this->enqueueScripts($this->scripts, 'js', $dependencies);
		}
		if( !empty($this->styles) ) {
			$this->enqueueScripts($this->styles, 'css', $dependencies);
		}
	}

	/**
	 * @param array $scripts
	 * @param string $type
	 * @param array $dependencies
	 */
	protected function enqueueScripts(array $scripts, $type, array $dependencies)
	{

		$is_first = true;

		/**
		 * Sets permission for file caching and combining into one file.
		 *
		 * @since 4.1.0
		 */
		$cache_enable = apply_filters('wbcr/factory/bootstrap/cache_enable', true);

		$cache_id = md5(implode(',', $this->scripts) . $type . $this->plugin->getPluginVersion());
		$cache_dir_path = FACTORY_BOOTSTRAP_482_DIR . '/assets/cache/';
		$cache_dir_url = FACTORY_BOOTSTRAP_482_URL . '/assets/cache/';

		$cache_filepath = $cache_dir_path . $cache_id . ".min." . $type;
		$cache_fileurl = $cache_dir_url . $cache_id . ".min." . $type;

		if( $cache_enable && file_exists($cache_filepath) ) {
			if( $type == 'js' ) {
				wp_enqueue_script('wbcr-factory-bootstrap-cached', $cache_fileurl, $dependencies, $this->plugin->getPluginVersion());
			} else {
				wp_enqueue_style('wbcr-factory-bootstrap-cached', $cache_fileurl, [], $this->plugin->getPluginVersion());
			}
		} else {
			$cache_dir_exists = false;
			if( !file_exists($cache_dir_path) ) {
				if( @mkdir($cache_dir_path, 0755) && wp_is_writable($cache_dir_path) ) {
					$cache_dir_exists = true;
				}
			} else {
				if( wp_is_writable($cache_dir_path) ) {
					$cache_dir_exists = true;
				}
			}

			$concat_files = [];
			foreach($scripts as $script_to_load) {
				$script_to_load = sanitize_text_field($script_to_load);
				if( $cache_enable && $cache_dir_exists ) {
					$fname = FACTORY_BOOTSTRAP_482_DIR . "/assets/$type-min/$script_to_load.min." . $type;
					if( file_exists($fname) ) {
						$f = @fopen($fname, 'r');
						$concat_files[] = @fread($f, filesize($fname));
						@fclose($f);
					}
				} else {
					if( $type == 'js' ) {
						wp_enqueue_script(md5($script_to_load), FACTORY_BOOTSTRAP_482_URL . "/assets/$type-min/$script_to_load.min." . $type, $is_first ? $dependencies : false, $this->plugin->getPluginVersion());
					} else {
						wp_enqueue_style(md5($script_to_load), FACTORY_BOOTSTRAP_482_URL . "/assets/$type-min/$script_to_load.min." . $type, [], $this->plugin->getPluginVersion());
					}
					$is_first = false;
				}
			}

			if( $cache_enable && $cache_dir_exists && !empty($concat_files) ) {

				$cf = @fopen($cache_filepath, 'w');
				$write_content = implode(PHP_EOL, $concat_files);
				@fwrite($cf, $write_content);
				@fclose($cf);
				chmod($cache_filepath, 0755);

				if( file_exists($cache_filepath) ) {
					if( $type == 'js' ) {
						wp_enqueue_script('wbcr-factory-bootstrap-' . $cache_id, $cache_fileurl, $dependencies, $this->plugin->getPluginVersion());
					} else {
						wp_enqueue_style('wbcr-factory-bootstrap-' . $cache_id, $cache_fileurl, [], $this->plugin->getPluginVersion());
					}
				}
			}
		}
	}

	/**
	 * Adds the body classes: 'factory-flat or 'factory-volumetric'.
	 *
	 * @param string $classes
	 *
	 * @return string
	 * @since 3.2.0
	 *
	 */
	public function adminBodyClass($classes)
	{
		$classes .= FACTORY_FLAT_ADMIN ? ' factory-flat ' : ' factory-volumetric ';

		return $classes;
	}
}

```
