HEX
Server: Apache/2
System: Linux da1 5.14.0-611.9.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 27 10:37:27 EST 2025 x86_64
User: mdosdorg (1028)
PHP: 8.3.14
Disabled: exec,system,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname,mail
Upload Files
File: /home/mdosdorg/public_html/wp-content/themes/fundifly-charity/inc/core/block-style.php
<?php

/**
 * Block Styles
 *
 * @link https://developer.wordpress.org/reference/functions/register_block_style/
 *
 * @package fundifly-charity
 * @since 1.0.0
 */

if (function_exists('register_block_style')) {
    /**
     * Register block styles.
     *
     * @since 0.1
     *
     * @return void
     */
    function fundifly_charity_register_block_styles()
    {
        register_block_style(
            'core/navigation',
            array(
                'name' => 'link-hover-primary',
                'label' => 'Hover : Primary', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/navigation',
            array(
                'name' => 'link-hover-secondary',
                'label' => 'Hover : Secondary', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/navigation',
            array(
                'name' => 'link-hover-foreground',
                'label' => 'Hover : Foreground', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/site-title',
            array(
                'name' => 'title-hover-primary',
                'label' => 'Hover : Primary', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/site-title',
            array(
                'name' => 'title-hover-secondary',
                'label' => 'Hover : Secondary', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/site-title',
            array(
                'name' => 'title-hover-foreground',
                'label' => 'Hover : Foreground', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/post-title',
            array(
                'name' => 'title-hover-primary',
                'label' => 'Hover : Primary', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/post-title',
            array(
                'name' => 'title-hover-secondary',
                'label' => 'Hover : Secondary', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/post-title',
            array(
                'name' => 'title-hover-foreground',
                'label' => 'Hover : Foreground', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/cover',
            array(
                'name' => 'cover-hover-zoom-in',
                'label' => 'Hover : Zoom In', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/cover',
            array(
                'name' => 'cover-hover-zoom-out',
                'label' => 'Hover : Zoom Out', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/post-featured-image',
            array(
                'name' => 'cover-hover-zoom-in',
                'label' => 'Hover : Zoom In', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/post-featured-image',
            array(
                'name' => 'cover-hover-zoom-out',
                'label' => 'Hover : Zoom Out', 'fundifly-charity'
            )
        );
        register_block_style(
            'core/list',
            array(
                'name' => 'list-hover-primary',
                'label' => 'Hover: Primary | List Style : None'
            )
        );
        register_block_style(
            'core/list',
            array(
                'name' => 'list-hover-secondary',
                'label' => 'Hover: Secondary | List Style : None'
            )
        );
        register_block_style(
            'core/list',
            array(
                'name' => 'list-hover-foreground',
                'label' => 'Hover: Foreground | List Style : None'
            )
        );
        register_block_style(
            'core/categories',
            array(
                'name' => 'categories-hover-primary',
                'label' => 'Hover: Primary | List Style : None'
            )
        );
        register_block_style(
            'core/categories',
            array(
                'name' => 'categories-hover-secondary',
                'label' => 'Hover: Secondary | List Style : None'
            )
        );
        register_block_style(
            'core/categories',
            array(
                'name' => 'categories-hover-foreground',
                'label' => 'Hover: Foreground | List Style : None'
            )
        );
        register_block_style(
            'core/post-terms',
            array(
                'name' => 'category-background-three',
                'label' => 'Background : Three', 'newsetmag'
            )
        );
        register_block_style(
            'core/post-terms',
            array(
                'name' => 'category-background-primary',
                'label' => 'Background : Primary', 'newsetmag'
            )
        );
        register_block_style(
            'core/post-terms',
            array(
                'name' => 'category-background-secondary',
                'label' => 'Background : Secondary', 'newsetmag'
            )
        );
    }
    add_action('init', 'fundifly_charity_register_block_styles');
};