Files
roi-theme/wp-content/plugins/sociallocker-next-premium/bizpanda/libs/factory/font-awesome/boot.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

26 lines
836 B
PHP
Executable File

<?php
/**
* Factory Font Awersome
*
* @author Paul Kashtanoff <paul@byonepress.com>
* @copyright (c) 2013, OnePress Ltd
*
* @package factory-bootstrap
* @since 1.0.0
*/
// module provides function only for the admin area
if ( !is_admin() ) return;
if (defined('FACTORY_FONTAWESOME_320_LOADED')) return;
define('FACTORY_FONTAWESOME_320_LOADED', true);
define('FACTORY_FONTAWESOME_320_DIR', dirname(__FILE__));
define('FACTORY_FONTAWESOME_320_URL', plugins_url(null, __FILE__ ));
add_action('admin_enqueue_scripts', 'factory_fontawesome_320_load_assets');
if (!function_exists('factory_fontawesome_320_load_assets')) {
function factory_fontawesome_320_load_assets() {
wp_enqueue_style('factory-fontawesome-320', FACTORY_FONTAWESOME_320_URL . '/assets/css/font-awesome.css');
}
}