File "mod.php"

Full Path: /home/jlklyejr/public_html/wp-content/test/wp-content/plugins/woo-currency/modules/pages/mod.php
File size: 323 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
class pagesWcu extends moduleWcu {
    /**
     * Check if current page is Login page
     */
    public function isLogin() {
		return (basename($_SERVER['SCRIPT_NAME']) == 'wp-login.php' 
				|| strpos($_SERVER['REQUEST_URI'], '/login/') === 0);	// Some plugins create login page by this address
    }
}