HEX
Server: Apache
System: Linux d5123.usc1.stableserver.net 5.14.0-570.17.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Sat May 24 12:53:17 EDT 2025 x86_64
User: d5123 (1001)
PHP: 8.4.21
Disabled: NONE
Upload Files
File: /home/d5123/myboofola_com/wp-content/plugins/feather-login-page/features/config.php
<?php

namespace FeatherLoginPagePro;

class Config {

    private static $instance = null;
    

    private function __construct() {}

    public static function getName() {
    
        return "Feather Login Page Pro";
    
    }
    
    public static function getVersion() {

        return "1.0.0";
    
    }

    public static function getAssetsURL() {
        return self::getURL() . "assets/";
    }

    public static function getURL() {
        
        return plugins_url() . "/" . dirname( plugin_basename( __FILE__ ) ) . "/";

    }

    public static function getPath() {

        return plugin_dir_path( __FILE__ );

    }

    public static function getIncPath() {

        return plugin_dir_path( __FILE__ ) . "inc" . DIRECTORY_SEPARATOR;
    
    }

    public static function getAdminPath() {

        return plugin_dir_path( __FILE__ ) . "inc" . DIRECTORY_SEPARATOR . "admin" . DIRECTORY_SEPARATOR;
    
    }

    public static function getViewsPath() {

        return plugin_dir_path( __FILE__ ) . "inc" . DIRECTORY_SEPARATOR . "admin" . DIRECTORY_SEPARATOR . "views" . DIRECTORY_SEPARATOR;;

    }

    public static function getCoreOptions() {
        $options = get_option( "plbp__login_builder_options_data" );

        if ( ! isset( $options["customloginurl"] ) )
            $options["customloginurl"] = array( 
                "enable" => false,
                "url" => "",
                "redirecturl" => ""
            );

        return $options;
    }

}