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

Disable Comments &amp; Delete All Comments, version 1.0.9. 292 lines.

- Page: https://pluginprobe.com/plugins/comments-plus/1.0.9/code/libs/factory/bootstrap/includes/functions.php
- Raw: https://pluginprobe.com/plugins/comments-plus/1.0.9/raw/libs/factory/bootstrap/includes/functions.php
- Modified: 2019-08-13T00:31:28+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.0.9/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>
	 * @copyright (c) 2018, OnePress Ltd
	 *
	 * @package factory-bootstrap
	 * @since 1.0.0
	 */
	
	add_action('wbcr_factory_bootstrap_400_plugin_created', 'wbcr_factory_bootstrap_400_plugin_created');
	
	/**
	 * @param Wbcr_Factory400_Plugin $plugin
	 */
	function wbcr_factory_bootstrap_400_plugin_created($plugin)
	{
		$manager = new Wbcr_FactoryBootstrap400_Manager($plugin);
		$plugin->setBootstap($manager);
	}
	
	if( !class_exists('Wbcr_FactoryBootstrap400_Manager') ) {
		
		/**
		 * The Bootstrap Manager class.
		 *
		 * @since 3.2.0
		 */
		class Wbcr_FactoryBootstrap400_Manager {
			
			/**
			 * A plugin for which the manager was created.
			 *
			 * @since 3.2.0
			 * @var Wbcr_Factory400_Plugin
			 */
			public $plugin;
			
			/**
			 * Contains scripts to include.
			 *
			 * @since 3.2.0
			 * @var string[]
			 */
			public $scripts = array();
			
			/**
			 * Contains styles to include.
			 *
			 * @since 3.2.0
			 * @var string[]
			 */
			public $styles = array();
			
			/**
			 * Createas a new instance of the license api for a given plugin.
			 *
			 * @since 1.0.0
			 */
			public function __construct(Wbcr_Factory400_Plugin $plugin)
			{
				$this->plugin = $plugin;
				
				add_action('admin_enqueue_scripts', array($this, 'loadAssets'));
				add_filter('admin_body_class', array($this, 'adminBodyClass'));
			}
			
			/**
			 * Includes the Bootstrap scripts.
			 * @since 3.2.0
			 * @param array|string $scripts
			 */
			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.
			 *
			 * @since 3.2.0
			 * @param array|string $styles
			 */
			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.
			 *
			 * @see admin_enqueue_scripts
			 *
			 * @since 3.2.0
			 * @return void
			 */
			public function loadAssets($hook)
			{
				
				do_action('wbcr_factory_400_bootstrap_enqueue_scripts', $hook);
				do_action('wbcr_factory_400_bootstrap_enqueue_scripts_' . $this->plugin->getPluginName(), $hook);

				$dependencies = array();
				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);
				}

				$user_id = get_current_user_id();
				$color_name = get_user_meta($user_id, 'admin_color', true);
				
				if( $color_name !== 'fresh' ) {
					if( file_exists(FACTORY_BOOTSTRAP_400_DIR . '/assets/flat/css/bootstrap.' . $color_name . '.css') ) {
						wp_enqueue_style('wbcr-factory-bootstrap-400-colors', FACTORY_BOOTSTRAP_400_URL . '/assets/flat/css/bootstrap.' . $color_name . '.css');
					}
				}
				
				if( $color_name == 'light' ) {
					$primary_dark = '#037c9a';
					$primary_light = '#04a4cc';
				} elseif( $color_name == 'blue' ) {
					$primary_dark = '#d39323';
					$primary_light = '#e1a948';
				} elseif( $color_name == 'coffee' ) {
					$primary_dark = '#b78a66';
					$primary_light = '#c7a589';
				} elseif( $color_name == 'ectoplasm' ) {
					$primary_dark = '#839237';
					$primary_light = '#a3b745';
				} elseif( $color_name == 'ocean' ) {
					$primary_dark = '#80a583';
					$primary_light = '#9ebaa0';
				} elseif( $color_name == 'midnight' ) {
					$primary_dark = '#d02a21';
					$primary_light = '#e14d43';
				} elseif( $color_name == 'sunrise' ) {
					$primary_dark = '#c36822';
					$primary_light = '#dd823b';
				} else {
					$primary_dark = '#0074a2';
					$primary_light = '#2ea2cc';
				}
				
				?>
				
				<script>
					if( !window.factory ) {
						window.factory = {};
					}
					if( !window.factory.factoryBootstrap400 ) {
						window.factory.factoryBootstrap400 = {};
					}
					window.factory.factoryBootstrap400.colors = {
						primaryDark: '<?php echo $primary_dark ?>',
						primaryLight: '<?php echo $primary_light ?>'
					};
				</script>
			<?php
			}

			/**
			 * @param array $sripts
			 * @param string $type
			 * @param array $dependencies
			 */
			protected function enqueueScripts(array $sripts, $type = 'js', array $dependencies)
			{

				$is_first = true;
				$cache_id = md5(implode(',', $this->scripts) . $type . $this->plugin->getPluginVersion());
				$cache_dir_path = FACTORY_BOOTSTRAP_400_DIR . '/assets/cache/';
				$cache_dir_url = FACTORY_BOOTSTRAP_400_URL . '/assets/cache/';

				$cache_filepath = $cache_dir_path . $cache_id . ".min." . $type;
				$cache_fileurl = $cache_dir_url . $cache_id . ".min." . $type;

				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, array(), $this->plugin->getPluginVersion());
					}
				} else {
					$cache_dir_exists = false;
					if( !file_exists($cache_dir_path) ) {
						if( @mkdir($cache_dir_path, 0777) && is_writable($cache_dir_path) ) {
							$cache_dir_exists = true;
						}
					} else {
						if( is_writable($cache_dir_path) ) {
							$cache_dir_exists = true;
						}
					}

					$concat_files = array();
					foreach($sripts as $script_to_load) {
						$script_to_load = sanitize_text_field($script_to_load);
						if( $cache_dir_exists ) {
							$fname = FACTORY_BOOTSTRAP_400_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_400_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_400_URL . "/assets/$type-min/$script_to_load.min." . $type, array(), $this->plugin->getPluginVersion());
							}
							$is_first = false;
						}
					}

					if( $cache_dir_exists && !empty($concat_files) ) {

						$cf = @fopen($cache_filepath, 'w');
						$write_content = implode(PHP_EOL, $concat_files);
						@fwrite($cf, $write_content);
						@fclose($cf);

						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, array(), $this->plugin->getPluginVersion());
							}
						}
					}
				}
			}

			/**
			 * Adds the body classes: 'factory-flat or 'factory-volumetric'.
			 *
			 * @since 3.2.0
			 * @param string $classes
			 * @return string
			 */
			public function adminBodyClass($classes)
			{
				$classes .= FACTORY_FLAT_ADMIN
					? ' factory-flat '
					: ' factory-volumetric ';

				return $classes;
			}
		}
	}
```
