IsBrowserDomainBlocked: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (update oop)
No edit summary
Line 18: Line 18:


===Returns===
===Returns===
Returns ''true'' if the URL is able to be loaded, ''false'' if it is blocked.
Returns ''false'' if the URL is able to be loaded, ''true'' if it is blocked and ''nil'' if an invalid domain/URL was passed.


==Example==
==Example==

Revision as of 19:47, 1 August 2015

This function checks if the specified URL is blocked from being loaded.

Syntax

bool isBrowserDomainBlocked ( string address [, bool isURL = false] )

OOP Syntax Help! I don't understand this!

Note: This is a static function under the Browser class
Method: Browser.isDomainBlocked(...)


Required arguments

  • address: A website URL

Optional arguments

  • isURL: true if address should be parsed as URL, false otherwise.

Returns

Returns false if the URL is able to be loaded, true if it is blocked and nil if an invalid domain/URL was passed.

Example

--Check the state of wiki.mtasa.com
if ( isBrowserDomainBlocked ( "wiki.mtasa.com" ) ) then
	--If it is blocked.
	outputChatBox("wiki.mtasa.com is blocked and can't be loaded right now!")
else
	--If it is not blocked. (Was accepted by the user)
	outputChatBox("wiki.mtasa.com is not blocked and ready to be loaded!")
end

See Also