コード例 #1
0
 public function editWidgetAction()
 {
     $this->view->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $request = $this->getRequest();
     $usersNs = new Zend_Session_Namespace("members");
     $mapCode = "fdWidget";
     $mapId1 = $usersNs->userId;
     if ($request->isPost()) {
         $model1 = new Security_Model_SystemMaster();
         $model = $model1->fetchAll("master_code='fdWidget'");
         $model2 = new Security_Model_SystemMapping();
         $model2->delete("map_code='{$mapCode}' and map_id1='{$mapId1}'");
         foreach ($model as $_row) {
             $disC = "display" . $_row->getMasterId();
             $ordC = "order" . $_row->getMasterId();
             $intval1 = $_POST[$disC];
             $intval2 = $_POST[$ordC];
             if (empty($intval2)) {
                 $intval2 = 0;
             }
             if (empty($intval1)) {
                 $intval1 = 0;
             } else {
                 $intval1 = 1;
             }
             $mapId2 = $_row->getMasterId();
             $model2->setMapCode($mapCode)->setMapId1($mapId1)->setMapId2($mapId2)->setIntval1($intval1)->setIntval2($intval2)->save();
         }
         $this->_flashMessenger->addMessage(array('success' => 'Widgets updated successfully!'));
         $this->_helper->_redirector->gotoUrl($this->view->seoUrl('/admin/widget/manage'));
     }
 }
コード例 #2
0
 public function removeAction()
 {
     $this->view->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $child_node_id = $this->_getParam('child_node_id');
     $arrChildNode = explode("_", $child_node_id);
     $child_master_code = $arrChildNode[0];
     $child_master_id = $arrChildNode[1];
     $parent_node_id = $this->_getParam('parent_node_id');
     $arrParentNode = explode("_", $parent_node_id);
     $parent_master_code = $arrParentNode[0];
     $parent_master_id = $arrParentNode[1];
     if ($child_master_code == "fdLegendsVal") {
         //delete role
         $objMap = new Security_Model_SystemMapping();
         $objMap->delete("map_code='fdLegendsLegendsValMap' and map_id1='{$parent_master_id}' and map_id2='{$child_master_id}'");
         $objMaster = new Security_Model_SystemMaster();
         $objMaster->delete("master_code='{$child_master_code}' and master_id='{$child_master_id}'");
     } else {
         if ($child_master_code == "fdLegends") {
             //fetch roles and delete them
             $objMap = new Security_Model_SystemMapping();
             $result = $objMap->fetchAll("map_code='fdLegendsLegendsValMap' and map_id1='{$child_master_id}'");
             if (count($result) > 0) {
                 foreach ($result as $_row) {
                     $objMaster = new Security_Model_SystemMaster();
                     $objMaster->delete("master_code='fdLegendsVal' and master_id='{$_row->getMapId2()}'");
                 }
             }
             $objMap->delete("map_code='fdLegendsLegendsValMap' and map_id1='{$child_master_id}'");
             // now delete sub group from master
             $objMaster = new Security_Model_SystemMaster();
             $objMaster->delete("master_code='{$child_master_code}' and master_id='{$child_master_id}'");
         }
     }
     echo $result = Zend_Json::encode(array("status" => true));
 }
コード例 #3
0
 public function removeAction()
 {
     $this->view->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $child_node_id = $this->_getParam('child_node_id');
     //print_r ($child_node_id);
     $arrChildNode = explode("_", $child_node_id);
     $child_master_code = $arrChildNode[0];
     $child_master_id = $arrChildNode[1];
     $parent_node_id = $this->_getParam('parent_node_id');
     $arrParentNode = explode("_", $parent_node_id);
     $parent_master_code = $arrParentNode[0];
     $parent_master_id = $arrParentNode[1];
     if ($child_master_code == "fdAnimalColor") {
         //delete role
         $objMap = new Security_Model_SystemMapping();
         //$objMap->delete("map_code='fdAnimalTypeAnimalColorMap' and map_id1='{$parent_master_id}' and map_id2='{$child_master_id}'");
         $objMap->updateanimal_color('fdAnimalAnimalTypeAnimalColorMap', $arrChildNode[1], $arrChildNode[2], $arrChildNode[3]);
         //$objMaster=new Security_Model_SystemMaster();
         //$objMaster->delete("master_code='{$child_master_code}' and master_id='{$child_master_id}'");
     } else {
         if ($child_master_code == "fdAnimalType") {
             //fetch roles and delete them
             $objMap = new Security_Model_SystemMapping();
             //$objMap->deleteanimal_type('fdAnimalAnimalTypeAnimalColorMap',$arrChildNode[1],$arrChildNode[2]);
             $objMap->delete("map_code='fdAnimalAnimalTypeAnimalColorMap' AND map_id2='{$arrChildNode['1']}' AND map_id1='{$arrChildNode['2']}'");
         } else {
             if ($child_master_code == "fdAnimal") {
                 // fetch sub groups and delete them
                 $objMap = new Security_Model_SystemMapping();
                 $result = $objMap->fetchAll("map_code='fdAnimalAnimalTypeMap' and map_id1='{$child_master_id}'");
                 if (count($result) > 0) {
                     foreach ($result as $_row) {
                         //fetch roles and delete them
                         $objMap1 = new Security_Model_SystemMapping();
                         $result1 = $objMap1->fetchAll("map_code='fdAnimalTypeAnimalColorMap' and map_id1='{$_row->getMapId2()}'");
                         if (count($result1) > 0) {
                             foreach ($result1 as $_row1) {
                                 $objMaster = new Security_Model_SystemMaster();
                                 $objMaster->delete("master_code='fdAnimalColor' and master_id='{$_row1->getMapId2()}'");
                             }
                         }
                         $objMap1->delete("map_code='fdAnimalTypeAnimalColorMap' and map_id1='{$_row->getMapId2()}'");
                         $objMaster = new Security_Model_SystemMaster();
                         $objMaster->delete("master_code='fdAnimalType' and master_id='{$_row->getMapId2()}'");
                     }
                 }
                 $objMap->delete("map_code='fdAnimalAnimalTypeMap' and map_id1='{$child_master_id}'");
                 // now delete group from master
                 $objMaster = new Security_Model_SystemMaster();
                 $objMaster->delete("master_code='{$child_master_code}' and master_id='{$child_master_id}'");
             }
         }
     }
     echo $result = Zend_Json::encode(array("status" => true));
 }
コード例 #4
0
 public function savePermissionAction()
 {
     $this->view->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $params = $this->_getAllParams();
     $rdo = $params['rdo'];
     //groupId, subGroupId, roleId, userId
     $mapId2 = $params[$rdo];
     $arrMapId1 = array();
     $mapCode = "";
     $arrResult = array("status" => 0);
     if ($rdo == "groupId") {
         $mapCode = "fdMenuGroupMap";
     } else {
         if ($rdo == "subGroupId") {
             $mapCode = "fdMenuSubGroupMap";
         } else {
             if ($rdo == "roleId") {
                 $mapCode = "fdMenuRoleMap";
             } else {
                 if ($rdo == "userId") {
                     $mapCode = "fdMenuUserMap";
                 }
             }
         }
     }
     foreach ($params as $k => $v) {
         if (stristr($k, "check_") !== false) {
             $arr = explode("_", $k);
             if ($arr[1] !== "noderoot") {
                 $arrMapId1[] = $arr[1];
             }
         }
     }
     if (count($arrMapId1) > 0) {
         $model = new Security_Model_SystemMapping();
         $model->delete("map_code='{$mapCode}' and map_id2='{$mapId2}'");
         foreach ($arrMapId1 as $mapId1) {
             $model->setMapCode($mapCode)->setMapId1($mapId1)->setMapId2($mapId2)->save();
         }
         $arrResult = array("status" => 1);
     } else {
         $arrResult = array("status" => 0);
     }
     echo Zend_Json::encode($arrResult);
 }
コード例 #5
0
 public function deleteBookmarkAction()
 {
     $this->view->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $request = $this->getRequest();
     $usersNs = new Zend_Session_Namespace("members");
     $id = trim($this->_getParam('bookID'));
     $mapCode = "fdUserBookmark";
     $mapId1 = $usersNs->userId;
     if ($id) {
         $model1 = new Security_Model_SystemMapping();
         $model = $model1->delete("map_code='{$mapCode}' and map_id1='{$mapId1}' and map_id2='{$id}'");
         $this->_flashMessenger->addMessage(array('success' => 'Bookmark deleted successfully!'));
         $this->_helper->_redirector->gotoUrl($this->view->seoUrl('/admin/bookmark/index'));
     }
 }