Example #1
0
 public function RunModule()
 {
     $this->ShowData();
     // show conclicts between static block ids and custom ids
     $rows = $this->GetDataset()->fetchAll();
     foreach ($rows as $row) {
         if (uWidgets::StaticWidgetExists($row['block_id'])) {
             echo "Conflict: Widget ({$row['block_id']}) already exists as a static Widget.  Please rename it.";
         }
     }
 }