File: /home/accemeff/vendor/craftcms/cms/src/elements/actions/Delete.php
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\elements\actions;
use Craft;
use craft\base\ElementAction;
use craft\elements\db\ElementQueryInterface;
/**
* Delete represents a Delete element action.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0
*/
class Delete extends ElementAction
{
// Properties
// =========================================================================
/**
* @var string|null The confirmation message that should be shown before the elements get deleted
*/
public $confirmationMessage;
/**
* @var string|null The message that should be shown after the elements get deleted
*/
public $successMessage;
// Public Methods
// =========================================================================
/**
* @inheritdoc
*/
public function getTriggerLabel(): string
{
return Craft::t('app', 'Delete');
}
/**
* @inheritdoc
*/
public static function isDestructive(): bool
{
return true;
}
/**
* @inheritdoc
*/
public function getConfirmationMessage()
{
return $this->confirmationMessage;
}
/**
* @inheritdoc
*/
public function performAction(ElementQueryInterface $query): bool
{
$elementsService = Craft::$app->getElements();
foreach ($query->all() as $element) {
$elementsService->deleteElement($element);
}
$this->setMessage($this->successMessage);
return true;
}
}