本文整理汇总了PHP中CMbObject::canDeleteEx方法的典型用法代码示例。如果您正苦于以下问题:PHP CMbObject::canDeleteEx方法的具体用法?PHP CMbObject::canDeleteEx怎么用?PHP CMbObject::canDeleteEx使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CMbObject
的用法示例。
在下文中一共展示了CMbObject::canDeleteEx方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: canDeleteEx
/**
* @see parent::canDeleteEx()
*/
function canDeleteEx()
{
// Date dépassée
$this->completeField("consultation_id");
$consult = $this->loadRefConsultation();
$consult->loadRefPlageConsult();
if ($consult->_ref_plageconsult->date < CMbDT::date() && !$this->_ref_module->canDo()->edit) {
return "Impossible de supprimer un dossier d'anesthésie d'une consultation passée";
}
return parent::canDeleteEx();
}
示例2: canDeleteEx
/**
* @see parent::canDeleteEx()
*/
function canDeleteEx()
{
// Suppr si Demande, redac, valid ou refus de demande (Terminé sans doc actif)
if ($this->etat == self::DEMANDE || $this->etat == self::REDAC || $this->etat == self::VALID || $this->etat == self::MODELE || $this->etat == self::TERMINE && !$this->_lastactif->doc_ged_suivi_id || $this->etat == self::TERMINE && $this->_lastactif->doc_ged_suivi_id != $this->_lastentry->doc_ged_suivi_id) {
return parent::canDeleteEx();
} else {
return CAppUI::tr("CDocGed-msg-error_delete");
}
}
示例3: canDeleteEx
/**
* @see parent::canDeleteEx()
*/
function canDeleteEx()
{
if ($msg = parent::canDeleteEx()) {
return $msg;
}
// Impossible de supprmier un événement réalisé
$this->completeField("realise", "annule");
$this->_traite = $this->realise || $this->annule;
if ($this->realise) {
return "CEvenementSSR-msg-delete-failed-realise";
}
return null;
}