本文整理匯總了PHP中Criteria::getCondition方法的典型用法代碼示例。如果您正苦於以下問題:PHP Criteria::getCondition方法的具體用法?PHP Criteria::getCondition怎麽用?PHP Criteria::getCondition使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Criteria
的用法示例。
在下文中一共展示了Criteria::getCondition方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: del
function del(Criteria $c)
{
$condition = $c->getCondition("categoryId");
$categoryId = $condition['value'];
$childCategoriesIds = array_map(create_function('$category', 'return $category[\'categoryId\'];'), $this->getChilds($categoryId, true));
$parentIds = array_map(create_function('$category', 'return $category[\'categoryId\'];'), $this->getParents($categoryId));
//creating list of items to delete
$c = new Criteria();
$c->add("categoryId", $childCategoriesIds, "IN");
$itemIds = $this->site->getArray($c, "siteId", false);
//delete all categories and subcategoeis
$c = new Criteria();
$c->add("categoryId", $childCategoriesIds, "IN");
parent::del($c);
$this->extraFieldCategory->del($c);
$c = new Criteria();
$c->add("childId", $childCategoriesIds, "IN");
$c->addOr("parentId", $childCategoriesIds, "IN");
$this->categoryParent->del($c);
//deleting items
foreach ($itemIds as $itemId) {
$c = new Criteria();
$c->add("siteId", $itemId);
$this->site->del($c, false);
}
$this->updateValidatedSitesCount($parentIds);
Cacher::getInstance()->clean("tag", array("category", "site"));
}
示例2: del
function del(Criteria $c)
{
$condition = $c->getCondition("adCriterionId");
$nc = new Criteria();
$nc->addCondition($condition);
parent::del($c);
Model::factoryInstance("ad")->del($nc);
}
示例3: del
function del(Criteria $c, $updateStats = true)
{
$condition = $c->getCondition("siteId");
$nc = new Criteria();
$nc->addCondition($condition);
parent::del($c);
Model::factoryInstance("keywordsOfSite")->del($nc);
Model::factoryInstance("comment")->del($nc, false);
Model::factoryInstance("hit")->del($nc);
$nc = new Criteria();
$condition['key'] = "itemId";
$nc->addCondition($condition);
Model::factoryInstance("extraFieldValue")->del($nc);
$photos = Model::factoryInstance("photo")->findAll($nc, "*", true);
foreach ($photos as $photo) {
$photo->del(false);
}
if ($updateStats) {
$this->updateStats();
}
}