当前位置: 首页>>代码示例>>PHP>>正文


PHP Relation::updateRelationCache方法代码示例

本文整理汇总了PHP中Relation::updateRelationCache方法的典型用法代码示例。如果您正苦于以下问题:PHP Relation::updateRelationCache方法的具体用法?PHP Relation::updateRelationCache怎么用?PHP Relation::updateRelationCache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Relation的用法示例。


在下文中一共展示了Relation::updateRelationCache方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: delete

 public function delete($con = null)
 {
     $originalCacheRelations = sfConfig::get('sf_cache_relations');
     sfConfig::set('sf_cache_relations', false);
     try {
         $docId = $this->getId();
         $con = Propel::getConnection();
         $con->begin();
         // delete child relation
         $c = new Criteria();
         $c->add(RelationPeer::ID2, $docId);
         $relations = RelationPeer::doSelect($c);
         foreach ($relations as $relation) {
             $relation->delete(null, sfConfig::get('sf_cache_relations'));
             //$relation->delete();
         }
         // delete parent relations
         $children = Document::getChildrenOf($docId);
         foreach ($children as $child) {
             $relation = new Relation();
             $relation->setId1($docId);
             $relation->setId2($child->getId());
             $child->delete();
             $relation->delete();
         }
         // delete any tags for this document
         $c = new Criteria();
         $c->add(TagrelationPeer::ID, $docId);
         $tagRelations = TagrelationPeer::doSelect($c);
         foreach ($tagRelations as $tag) {
             $tag->delete();
         }
         parent::delete();
         $con->commit();
     } catch (Exception $e) {
         $con->rollback();
         throw $e;
     }
     // set 'sf_cache_relations' it's original value
     sfConfig::set('sf_cache_relations', $originalCacheRelations);
     if ($originalCacheRelations) {
         Relation::updateRelationCache();
     }
     return true;
 }
开发者ID:kotow,项目名称:work,代码行数:45,代码来源:Document.php

示例2: executeDelete

 public function executeDelete()
 {
     if ($user = $this->getUser()->getSubscriber()) {
         $userType = $user->getType();
     }
     if ($selectedDocuments = $this->getRequestParameter("selectedDocuments")) {
         sfConfig::set('sf_cache_relations', false);
         $selectedDocuments = explode(",", $selectedDocuments);
         foreach ($selectedDocuments as $docId) {
             $document = Document::getDocumentInstance($docId);
             if ($document) {
                 if ($userType != "admin") {
                     $class = get_class($document);
                     if ($class == "Lists" && $document->getListType() == "system") {
                         $alert = "no_delete";
                         continue;
                     } else {
                         if ($class == "Listitem") {
                             if ($parent = Document::getParentOf($document->getId())) {
                                 if ($parent->getListType() == "system") {
                                     $alert = "no_delete";
                                     continue;
                                 }
                             }
                         }
                     }
                 }
                 $document->delete();
             }
         }
         sfConfig::set('sf_cache_relations', true);
         Relation::updateRelationCache($this->getRequestParameter("p"));
     } else {
         $document = Document::getDocumentInstance($this->getRequestParameter('id'));
         if ($document) {
             $class = get_class($document);
             if ($userType != "admin") {
                 if ($class == "Lists" && $document->getListType() == "system") {
                     $alert = "no_delete";
                 } else {
                     if ($class == "Listitem") {
                         if ($parent = Document::getParentOf($document->getId())) {
                             if ($parent->getListType() == "system") {
                                 $alert = "no_delete";
                             }
                         }
                     }
                 }
             }
             if ($alert != "no_delete") {
                 $document->delete();
             }
         }
     }
     exit($alert);
 }
开发者ID:kotow,项目名称:work,代码行数:56,代码来源:actions.class.php

示例3: executeChangeOrder

 public function executeChangeOrder()
 {
     exec('rm -fr ' . SF_ROOT_DIR . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'menus/*');
     $items = $this->getRequestParameter('item');
     $c = new Criteria();
     $c->addAscendingOrderByColumn(RelationPeer::SORT_ORDER);
     $c->add(RelationPeer::ID2, $items, Criteria::IN);
     $arr = RelationPeer::doSelect($c);
     $order = array();
     foreach ($arr as $ind => $obj) {
         $parentId = $obj->getId1();
         $order[$items[$ind]] = $obj->getSortOrder();
     }
     foreach ($arr as &$obj) {
         $obj->setSortOrder($order[$obj->getId2()]);
         $obj->save();
     }
     if ($parentId) {
         Relation::updateRelationCache($parentId);
     }
     exit("OK");
 }
开发者ID:kotow,项目名称:work,代码行数:22,代码来源:actions.class.php


注:本文中的Relation::updateRelationCache方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。