Item_Ticket::showMassiveActionsSubForm PHP 메소드

showMassiveActionsSubForm() 정적인 공개 메소드

또한 보기: CommonDBTM::showMassiveActionsSubForm()
static public showMassiveActionsSubForm ( MassiveAction $ma )
$ma MassiveAction
    static function showMassiveActionsSubForm(MassiveAction $ma)
    {
        switch ($ma->getAction()) {
            case 'add_item':
                static::showFormMassiveAction($ma);
                return true;
            case 'delete_item':
                static::showFormMassiveAction($ma);
                return true;
        }
        return parent::showMassiveActionsSubForm($ma);
    }