GetResourceOrganizationalPath: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→See Also) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Server function}} | {{Server function}} | ||
__NOTOC__ | __NOTOC__ | ||
This function returns the organizational file path (e.g. ''[admin]'') of a resource. | This function returns the organizational file path (e.g. ''[admin]'') of a resource. | ||
Line 8: | Line 7: | ||
string getResourceOrganizationalPath ( resource theResource ) | string getResourceOrganizationalPath ( resource theResource ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[resource]]:getOrganizationalPath }} | {{OOP||[[resource]]:getOrganizationalPath|organizationalPath }} | ||
===Required Arguments=== | ===Required Arguments=== | ||
Line 14: | Line 13: | ||
===Returns=== | ===Returns=== | ||
Returns the organizational | Returns the organizational folder name of the [[resource]]. It returns empty string if the resource is on root ''resources'' folder. It returns '''false''' if the resource could not be found. | ||
==Example== | ==Example== | ||
This example outputs the path of the current resource when it is started. | |||
<syntaxhighlight lang="lua"> | |||
addEventHandler("onResourceStart", resourceRoot, | |||
function () | |||
outputChatBox(getResourceName(resource) .. "'s path: " .. getResourceOrganizationalPath(resource)) | |||
end) | |||
</syntaxhighlight> | |||
==See Also== | ==See Also== | ||
{{Resource_functions}} | {{Resource_functions|server}} |
Latest revision as of 22:47, 6 September 2024
This function returns the organizational file path (e.g. [admin]) of a resource.
Syntax
string getResourceOrganizationalPath ( resource theResource )
OOP Syntax Help! I don't understand this!
- Method: resource:getOrganizationalPath(...)
- Variable: .organizationalPath
Required Arguments
- theResource: the resource of which you want to know the organizational path
Returns
Returns the organizational folder name of the resource. It returns empty string if the resource is on root resources folder. It returns false if the resource could not be found.
Example
This example outputs the path of the current resource when it is started.
addEventHandler("onResourceStart", resourceRoot, function () outputChatBox(getResourceName(resource) .. "'s path: " .. getResourceOrganizationalPath(resource)) 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