| Server IP : 39.106.62.82 / Your IP : 216.73.216.48 Web Server : nginx/1.14.1 System : Linux iz2ze1m0zmp2dk5c3j5ap5z 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /webdata/gohomesh.com/wp-content/plugins/admin-menu-editor/includes/ |
Upload File : |
<?php
/**
* This utility script generates menu icons metadata based on the Dashicons icon font included in WordPress.
*/
if ( !defined('ABSPATH') ) {
die('No direct script access');
}
if ( !constant('WP_DEBUG') || !current_user_can('edit_plugins') ) {
echo "Permission denied. You need the edit_plugins cap to run this script and WP_DEBUG must be enabled.";
return;
}
require_once dirname(__FILE__) . '/PHP-CSS-Parser/autoloader.php';
$dashiconsStylesheet = ABSPATH . WPINC . '/css/dashicons.css';
$icons = array();
$allDashiconDefinitions = '';
$ignoreIcons = array('dashboard', 'editor-bold', 'editor-italic');
$ignoreIcons = array_flip($ignoreIcons);
// phpcs:ignore WordPressVIPMinimum.Performance.FetchingRemoteData.FileGetContentsUnknown -- Not fetching remote data.
$parser = new Sabberworm\CSS\Parser(file_get_contents($dashiconsStylesheet));
$cssDocument = $parser->parse();
$blocks = $cssDocument->getAllDeclarationBlocks();
foreach($blocks as $block) {
/** @var Sabberworm\CSS\RuleSet\DeclarationBlock $block */
//We want the ".dashicons-*:before" selectors.
$selectors = $block->getSelectors();
foreach($selectors as $selector) {
/** @var Sabberworm\CSS\Property\Selector $selector */
if ( preg_match('/\.dashicons-(?P<name>[\w\-]+):before/', $selector->getSelector(), $matches) ) {
$name = $matches['name'];
$char = null;
//The arrow icons aren't really suitable as menu icons.
if ( preg_match('/^(arrow)-/', $name) ) {
break;
}
//Some icons are duplicates of the "admin-" icons or just wouldn't look very good in a menu.
if ( array_key_exists($name, $ignoreIcons) ) {
break;
}
$rules = $block->getRules('content'); //Expect something like "content: '\f123'".
foreach($rules as $rule) {
/** @var Sabberworm\CSS\Rule\Rule $rule */
$value = $rule->getValue();
if ($value instanceof Sabberworm\CSS\Value\CSSString) {
//The parser defaults to UTF-8. Convert the char to a hexadecimal escape code
//so we don't have to worry about our CSS charset.
$char = ltrim(bin2hex(iconv('UTF-8', 'UCS-4', $value->getString())), '0');
$icons[$name] = '\\' . $char;
}
}
if (isset($char) && ($name !== 'before')) {
$allDashiconDefinitions .= sprintf(
'%s { content: "\%s" !important; }',
implode(', ', $selectors),
$char
) . "\n";
}
break;
}
}
}
$dashiconComment = sprintf(
"/*\nThis file was automatically generated from /wp-includes/css/dashicons.css.\nLast update: %s\n*/",
gmdate('c')
);
// phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_file_put_contents -- Dev stuff; WP_DEBUG must be enabled to get here.
file_put_contents(
dirname(__FILE__) . '/../css/_dashicons.scss',
$dashiconComment . "\n" . $allDashiconDefinitions
);
?>
<div class="wrap">
<h2>Dashicons to Menu Icons</h2>
<style type="text/css" scoped="scoped">
.ame-debug-dashicon {
display: inline-block;
margin: 2px;
min-width: 180px;
}
</style>
<?php
ksort($icons);
$arrayDefinition = "array(\n";
$currentLine = "\t";
foreach($icons as $name => $character) {
//Output each icon for visual verification.
printf(
'<div class="ame-debug-dashicon"><div class="dashicons dashicons-%1$s"></div> %1$s</div>',
esc_html($name)
);
//Wrap the array definition at about 80 characters for legibility.
$item = "'" . $name . "', ";
if ( strlen($currentLine . $item) > 80 ) {
$arrayDefinition .= $currentLine . "\n";
$currentLine = "\t";
}
$currentLine .= $item;
}
if (strlen($currentLine) > 1) {
$arrayDefinition .= $currentLine . "\n";
}
$arrayDefinition .= ')';
echo '<div class="clear"></div><br>';
echo '<textarea cols="100" rows="20">', esc_textarea($arrayDefinition), '</textarea>';
echo '</div>';