HU/isBrowserDomainBlocked: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
{{Client function hu}} | {{Client function hu}} | ||
{{New feature/item|3.0150|1.5|| | {{New feature/item|3.0150|1.5|| | ||
Ez a függvény leellenőrzi, hogy egy adott URL betöltése tiltott-e. | |||
}} | }} | ||
== | ==Szintaxis== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
bool isBrowserDomainBlocked ( string address [, bool isURL = false] ) | bool isBrowserDomainBlocked ( string address [, bool isURL = false] ) | ||
Line 11: | Line 11: | ||
{{OOP|This is a static function under the '''Browser''' class|[[Element/Browser|Browser]].isDomainBlocked}} | {{OOP|This is a static function under the '''Browser''' class|[[Element/Browser|Browser]].isDomainBlocked}} | ||
=== | ===Kötelező argumentumok=== | ||
*'''address:''' | *'''address:''' Egy weboldal URL | ||
=== | ===Opcionális argumentumok=== | ||
*'''isURL:''' ''true'' | *'''isURL:''' ''true'' amennyiben az ''address'' egy URL, ''false'' egyébként. | ||
=== | ===Visszaadott érték=== | ||
''false'' ha az URL-t be lehet tölteni, ''true'' ha tiltott és ''nil'' ha hibás URL/domain lett megadva. | |||
== | ==Példa== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
--Check the state of wiki.mtasa.com | --Check the state of wiki.mtasa.com | ||
Line 32: | Line 32: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==Lásd még== | ||
{{CEF_functions_hu}} | {{CEF_functions_hu}} | ||
[[en:isBrowserDomainBlocked]] | |||
==Fordította== | |||
*'''WorthlessCynomys''' | |||
[[en:isBrowserDomainBlocked]] |
Latest revision as of 10:31, 11 August 2018
Ez a függvény leellenőrzi, hogy egy adott URL betöltése tiltott-e.
Szintaxis
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(...)
Kötelező argumentumok
- address: Egy weboldal URL
Opcionális argumentumok
- isURL: true amennyiben az address egy URL, false egyébként.
Visszaadott érték
false ha az URL-t be lehet tölteni, true ha tiltott és nil ha hibás URL/domain lett megadva.
Példa
--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
Lásd még
- HU/canBrowserNavigateBack
- HU/canBrowserNavigateForward
- HU/createBrowser
- HU/executeBrowserJavascript
- HU/focusBrowser
- HU/getBrowserProperty
- HU/getBrowserSettings
- HU/getBrowserSource
- HU/getBrowserTitle
- HU/getBrowserURL
- HU/injectBrowserMouseDown
- HU/injectBrowserMouseMove
- HU/injectBrowserMouseUp
- HU/injectBrowserMouseWheel
- HU/isBrowserDomainBlocked
- HU/isBrowserFocused
- HU/isBrowserLoading
- HU/loadBrowserURL
- HU/navigateBrowserBack
- HU/navigateBrowserForward
- HU/reloadBrowserPage
- HU/requestBrowserDomains
- HU/resizeBrowser
- HU/setBrowserAjaxHandler
- HU/setBrowserProperty
- HU/setBrowserRenderingPaused
- HU/setBrowserVolume
- HU/toggleBrowserDevTools
GUI Függvények
Fordította
- WorthlessCynomys