__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Blocksy;
class Colors {
public function __construct() {
add_action('wp_ajax_blocksy_get_custom_palettes', function () {
if (! current_user_can('manage_options')) {
wp_send_json_error();
}
$option = get_option('blocksy_custom_palettes', []);
if (empty($option)) {
$option = [];
}
if (! isset($option['palettes'])) {
$option['palettes'] = [];
}
wp_send_json_success([
'palettes' => $option['palettes']
]);
});
add_action('wp_ajax_blocksy_sync_custom_palettes', function () {
if (! current_user_can('manage_options')) {
wp_send_json_error();
}
$body = json_decode(file_get_contents('php://input'), true);
if (! isset($body['palettes'])) {
wp_send_json_error();
}
update_option('blocksy_custom_palettes', [
'palettes' => $body['palettes']
]);
wp_send_json_success($body);
});
}
public function get_color_palette($args = []) {
$args = wp_parse_args(
$args,
[
'id' => 'colorPalette',
'default' => [
'color1' => [
'color' => '#2872fa',
],
'color2' => [
'color' => '#1559ed',
],
'color3' => [
'color' => '#3A4F66',
],
'color4' => [
'color' => '#192a3d',
],
'color5' => [
'color' => '#e1e8ed',
],
'color6' => [
'color' => '#f2f5f7',
],
'color7' => [
'color' => '#FAFBFC',
],
'color8' => [
'color' => '#ffffff',
]
]
]
);
$colorPalette = blocksy_get_theme_mod($args['id'], $args['default']);
$result = [];
foreach ($colorPalette as $key => $value) {
if (strpos($key, 'color') === false) {
continue;
}
$variableName = str_replace('color', 'theme-palette-color-', $key);
if (isset($value['variable']) && ! empty($value['variable'])) {
$variableName = $value['variable'];
}
if (! $value) {
$value = $args['default'][$key];
}
$title = blocksy_safe_sprintf(
__('Color %s', 'blocksy'),
str_replace('color', '', $key)
);
if (isset($value['title'])) {
$title = $value['title'];
}
$result[$key] = [
'id' => $key,
'slug' => 'palette-color-' . str_replace('color', '', $key),
'color' => $value['color'],
'variable' => $variableName,
'title' => $title
];
}
return $result;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| db-versioning | Folder | 0750 |
|
|
| StringHelpers.php | File | 1.54 KB | 0640 |
|
| archive-title-renderer.php | File | 1.11 KB | 0640 |
|
| autoload.php | File | 6.77 KB | 0640 |
|
| blocksy-blocks-parser.php | File | 941 B | 0640 |
|
| blocksy-walker-page.php | File | 1.06 KB | 0640 |
|
| class-ct-attributes-parser.php | File | 6.67 KB | 0640 |
|
| class-ct-css-injector.php | File | 7.06 KB | 0640 |
|
| class-ct-group-title.php | File | 1.12 KB | 0640 |
|
| colors.php | File | 2.28 KB | 0640 |
|
| database.php | File | 584 B | 0640 |
|
| entity-id-picker.php | File | 6.39 KB | 0640 |
|
| hooks-manager.php | File | 3.63 KB | 0640 |
|
| print.php | File | 5.19 KB | 0640 |
|
| raii.php | File | 255 B | 0640 |
|
| screen-manager.php | File | 14.6 KB | 0640 |
|
| theme-db-versioning.php | File | 36.26 KB | 0640 |
|
| trait-wordpress-actions-manager.php | File | 2.01 KB | 0640 |
|
| translations-manager.php | File | 10.71 KB | 0640 |
|
| woo-import-export.php | File | 8.57 KB | 0640 |
|
| woo-variation-images-import-export.php | File | 2.43 KB | 0640 |
|