Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
rest_manager.inc
1 <?php
17 require_once SQ_INCLUDE_PATH.'/asset.inc';
18 
30 class REST_Manager extends Asset
31 {
32 
39  function __construct($assetid=0)
40  {
41  parent::__construct($assetid);
42 
43  }//end constructor
44 
45 
54  function _getName($short_name=false)
55  {
56  return $GLOBALS['SQ_SYSTEM']->am->getTypeInfo($this->type(), 'name');
57 
58  }//end _getName()
59 
60 
67  function canDelete()
68  {
69  return false;
70 
71  }//end canDelete()
72 
73 
81  function canClone()
82  {
83  return false;
84 
85  }//end canClone()
86 
87 
88 }//end class
89 
90 ?>