Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
page_tag_listing_edit_fns.inc
1 <?php
18 require_once SQ_PACKAGES_PATH.'/cms/page_templates/page_asset_listing/page_asset_listing_edit_fns.inc';
19 
32 {
33 
38  function __construct()
39  {
40  parent::__construct();
41 
42  }//end constructor
43 
44 
51  function paintThesaurusLinks($asset, $o, $prefix)
52  {
53  return $this->paintNoticeLinkedAsset($asset, 'thesaurus', Array('thesaurus' => 'D'), 'thesaurus');
54 
55  }//end processVerdictStyle()
56 
57 
64  function processThesaurusLinks($asset, $o, $prefix)
65  {
66  return $this->processNoticeLinkedAsset($asset, 'thesaurus', 'thesaurus');
67 
68  }//end processVerdictStyle()
69 
70 
81  function paintRootNode(&$asset, &$o, $prefix)
82  {
83  return $this->paintNoticeLinkedAsset($asset, 'root');
84 
85  }//end paintRootNode()
86 
87 
98  function processRootNode(&$asset, &$o, $prefix)
99  {
100  if (isset($asset->_tmp['reverting_to_system_version']) && $asset->_tmp['reverting_to_system_version']) {
101  return FALSE;
102  }
103 
104  return $this->processNoticeLinkedAsset($asset, 'root');
105 
106  }//end paintRootNode()
107 
108 
109 }//end class
110 ?>