GIF94; MINI MO Shell - Tarih Gösterimli

MINI MINI MANI MO - TARİH GÖSTERİMLİ

Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/dynamic-data/fields/user/
File Upload :
Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/dynamic-data/fields/user/current-user-bio.php

<?php

namespace Breakdance\DynamicData;

class CurrentUserBio extends StringField
{

    /**
     * @inheritDoc
     */
    public function label()
    {
        return __('User Bio', 'breakdance');
    }

    /**
     * @inheritDoc
     */
    public function category()
    {
        return __('Current User', 'breakdance');
    }

    /**
     * @inheritDoc
     */
    public function slug()
    {
        return 'user_bio';
    }

    public function handler($attributes): StringData
    {
        $data = new StringData();
        $user = wp_get_current_user();
        $data->value = strip_shortcodes($user->description); // Security - strip_shortcodes: https://github.com/soflyy/breakdance/issues/4186

        return $data;
    }
}

OHA YOOO - Tarih: 2026-08-04 04:14:17