Example #1
0
 protected function createActionUrl($actionName, $func)
 {
     return RFUtil::buildURL($this->getBasePath(), array('action' => $actionName, 'func' => $func));
 }
Example #2
0
 public function setRowDataSource($dsFunc, $db)
 {
     $this->setDashboard($db);
     $this->props->addItemToList("data.sources", "tableRowDataSource", array('url' => RFUtil::buildURL($this->getBasePath(), array('action' => 'getData', 'func' => $dsFunc, 'component' => $this->getID()))));
 }
Example #3
0
 private function buildRefreshURL()
 {
     $url = RFUtil::buildURL($this->getBasePath(), array('getDashboardAsJSON' => true));
     return $url;
 }