本文整理汇总了PHP中Object::drop方法的典型用法代码示例。如果您正苦于以下问题:PHP Object::drop方法的具体用法?PHP Object::drop怎么用?PHP Object::drop使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Object
的用法示例。
在下文中一共展示了Object::drop方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: drop
/**
* @see parent::drop()
*/
public function drop()
{
if (parent::drop()) {
File::detach($this);
return true;
}
return false;
}
示例2: drop
/**
* @see parent::drop()
*/
public function drop()
{
if (parent::drop()) {
$Row = $this->getSessionRow();
$Row->dropList(array('UserId = ' . $this->Id));
return true;
}
return false;
}
示例3: drop
/**
* @see parent::drop()
*/
public function drop()
{
if (parent::drop()) {
$Row = new Order_Row($this);
$Row->dropList(array('OrderId = ' . $this->Id));
return true;
}
return false;
}
示例4: drop
/**
* @see parent::drop()
*/
public function drop()
{
if (parent::drop()) {
File::detach($this);
$Document = new Proud_Document();
foreach ($Document->findList(array('ProudId = ' . $this->Id)) as $Document) {
$Document->drop();
}
$Example = new Proud_Example();
foreach ($Example->findList(array('ProudId = ' . $this->Id)) as $Example) {
$Example->drop();
}
$Image = new Proud_Image();
foreach ($Image->findList(array('ProudId = ' . $this->Id)) as $Image) {
$Image->drop();
}
$Model = new Proud_Model();
foreach ($Model->findList(array('ProudId = ' . $this->Id)) as $Model) {
$Model->drop();
}
$Unit = new Proud_Unit();
foreach ($Unit->findList(array('ProudId = ' . $this->Id)) as $Unit) {
$Unit->drop();
}
return true;
}
return false;
}
示例5: drop
/**
* @see parent::drop()
*/
public function drop()
{
if (parent::drop()) {
File::detach($this);
foreach ($this->getItems() as $Item) {
$Item->drop();
}
return true;
}
return false;
}
示例6: drop
/**
* @see parent::drop()
*/
public function drop()
{
if (parent::drop()) {
File::detach($this);
$Tag = new Article_Tag();
$Tag->dropList(array('ArticleId = ' . $this->Id));
return true;
}
return false;
}
示例7: drop
/**
* @see parent::drop()
*/
public function drop()
{
if (parent::drop()) {
foreach ($this->getBlocks() as $Block) {
$Block->drop();
}
return true;
}
return false;
}