GIF94; MINI MO Shell - Tarih Gösterimli

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

Path : /var/www/wordpress/wp-content/plugins/breakdance-forms-for-oxygen/elements/LoginForm/
File Upload :
Current File : /var/www/wordpress/wp-content/plugins/breakdance-forms-for-oxygen/elements/LoginForm/ajax.php

<?php

namespace EssentialElements;

\Breakdance\Forms\registerForm([
    'slug' => 'login',
    'args' => [
        'fields' => ['filter' => FILTER_DEFAULT, 'flags' => FILTER_REQUIRE_ARRAY]
    ],
    'handler' => 
        /**
         * @param array $credentials
         * @return string[]
         */
        function ($credentials) {
            if (empty($credentials['user_login']) || empty($credentials['user_password'])) {
                return [
                    'type' => 'error',
                    'message' => "Username or password can't be empty."
                ];
            }

            $user = wp_signon($credentials);

            if (!is_wp_error($user)) {
                return ['type' => 'success'];
            } else {
                return [
                    'type' => 'error',
                    'message' => $user->get_error_message()
                ];
            }
        }
]);

OHA YOOO - Tarih: 2026-08-04 00:45:31