CMS  Version 3.9
content_inventory_helper.inc
Go to the documentation of this file.
1 <?php
7 Fakoli::using("developer_tools", "section");
8 
10 {
11  var $showAll = false;
12  var $map;
13 
15  {
16  $this->showAll = $showAll;
17  $this->map = null;
18  }
19 
20  function onStartRow($item)
21  {
23 
24  if (!$this->showAll)
25  {
26  return ($map != "<em>Not mapped</em>");
27  }
28 
29  return ($map != "<em>Not mapped</em>") ? "mapped" : "unmapped";
30  }
31 }?>
static using()
Import the datamodels, views and manifest for the specified component(s).
Definition: core.inc:116