Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Resource delete: Difference between revisions

From Catglobe Wiki
Nguyentanphong (talk | contribs)
Created page with "'''Resource_delete''' Delete a resource. - User must have full access to that resource or error will return false if no access to child resources or problem with deleting. ..."
 
Cg_pham (talk | contribs)
No edit summary
 
(18 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''Resource_delete'''
{{HelpFiles}}
= Resource_delete =


Delete a resource.  
Delete a specific resource.  


- User must have full access to that resource or error will return false if no access to child resources or problem with deleting.  
*User must have administrator right on the resource which will be deleted.
*And user also must have navigation access to that resource.


- And user must have nav access to the right xxx_delete also.
<br>


'''Syntax '''
=== Syntax ===


  Resource_delete(ResourceID);
Resource_delete(ResourceID)  


<br> '''Arguments'''
<br>


  ResourceID: is a number.
=== Arguments  ===


'''Return type'''
ResourceID: is a number. It is the resource id of resource.


  bool.
<br>


  + true if deleted and child resources deleted also.
=== Return type  ===


'''Examples'''
Boolean


bool RDelstatus =Resource_delete(37278397);
*true if deleted and child resources deleted also.
*false if the resource can not be deleted.


print(RDelstatus);  
<br>
 
=== Examples  ===
 
bool RDelstatus =Resource_delete(37278397); <br> print(RDelstatus);&nbsp; &nbsp;&nbsp; // result: true


[[Category:Resource_Functions]]
[[Category:Resource_Functions]]
__NOTOC__

Latest revision as of 02:51, 14 December 2011

Resource_delete

Delete a specific resource.

  • User must have administrator right on the resource which will be deleted.
  • And user also must have navigation access to that resource.


Syntax

Resource_delete(ResourceID)


Arguments

ResourceID: is a number. It is the resource id of resource.


Return type

Boolean

  • true if deleted and child resources deleted also.
  • false if the resource can not be deleted.


Examples

bool RDelstatus =Resource_delete(37278397);
print(RDelstatus);     // result: true