Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
web_folder_users.inc
1 <?php
17 require_once SQ_CORE_PACKAGE_PATH.'/system/web_folders/web_folder/web_folder.inc';
18 
29 {
30 
31 
38  function __construct($assetid=0)
39  {
40  parent::__construct($assetid);
41 
42  }//end constructor
43 
44 
52  public function _getAllowedLinks()
53  {
54  $allowed_links = parent::_getAllowedLinks();
55  $allowed_links[SQ_LINK_TYPE_1]['user'] = Array('card' => 'M', 'exclusive' => FALSE);
56  $allowed_links[SQ_LINK_TYPE_2]['user'] = Array('card' => 'M', 'exclusive' => FALSE);
57  return $allowed_links;
58 
59  }//end _getAllowedLinks()
60 
61 
62 }//end class
63 
64 ?>