# give/4.16.9/src/Framework/DesignSystem/Actions/RegisterDesignSystemStyles.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 22 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/DesignSystem/Actions/RegisterDesignSystemStyles.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/DesignSystem/Actions/RegisterDesignSystemStyles.php
- Modified: 2025-03-31T19:17:16+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/give/4.16.9/code/src/Framework/DesignSystem/Actions/RegisterDesignSystemStyles.php#L10-L20`.

```php
<?php

namespace Give\Framework\DesignSystem\Actions;

class RegisterDesignSystemStyles
{
    /**
     * @since 2.26.0
     */
    public function __invoke()
    {
        $version = file_get_contents(GIVE_PLUGIN_DIR . 'build/assets/dist/css/design-system/version');

        wp_register_style(
            'givewp-design-system-foundation',
            GIVE_PLUGIN_URL . 'build/assets/dist/css/design-system/foundation.css',
            [],
            $version
        );
    }
}

```
