GetResources: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (→See Also) |
||
(5 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | {{Server function}} | ||
__NOTOC__ | |||
This function retrieves a table of all the resources that exist on the server. | This function retrieves a table of all the resources that exist on the server. | ||
Line 5: | Line 6: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
table getResources () | table getResources () | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[Resource]].getAll}} | |||
===Returns=== | ===Returns=== | ||
Returns a table of resources. | Returns a table of resources. | ||
==Example== | ==Example== | ||
This function lists all loaded resources in the console. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
function displayResources() | function displayResources() | ||
outputConsole("List of resources:") | outputConsole("List of resources:") | ||
local resourceTable = getResources() -- get a table of resources | local resourceTable = getResources() -- get a table of resources | ||
for resourceKey, resourceValue in resourceTable do | for resourceKey, resourceValue in ipairs(resourceTable) do | ||
-- iterate through the table and output each resource's name | -- iterate through the table and output each resource's name | ||
local name = getResourceName(resourceValue) | local name = getResourceName(resourceValue) | ||
Line 24: | Line 27: | ||
==See Also== | ==See Also== | ||
{{Resource_functions}} | {{Resource_functions|server}} |
Latest revision as of 22:47, 6 September 2024
This function retrieves a table of all the resources that exist on the server.
Syntax
table getResources ()
OOP Syntax Help! I don't understand this!
- Method: Resource.getAll(...)
Returns
Returns a table of resources.
Example
This function lists all loaded resources in the console.
function displayResources() outputConsole("List of resources:") local resourceTable = getResources() -- get a table of resources for resourceKey, resourceValue in ipairs(resourceTable) do -- iterate through the table and output each resource's name local name = getResourceName(resourceValue) outputConsole(" " .. name) end end
See Also
- addResourceConfig
- addResourceMap
- callRemote
- copyResource
- createResource
- deleteResource
- getResourceACLRequests
- getResourceInfo
- getResourceLastStartTime
- getResourceLoadFailureReason
- getResourceLoadTime
- getResourceMapRootElement
- getResourceOrganizationalPath
- getResources
- isResourceArchived
- isResourceProtected
- refreshResources
- removeResourceFile
- renameResource
- restartResource
- setResourceInfo
- startResource
- stopResource
- updateResourceACLRequest
- Shared
- abortRemoteRequest
- call
- fetchRemote
- getResourceConfig
- getResourceDynamicElementRoot
- getResourceExportedFunctions
- getResourceFromName
- getResourceName
- getResourceRootElement
- getResourceState
- getThisResource
- getRemoteRequests
- getRemoteRequestInfo