%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/calendar/widgets/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/calendar/widgets/DeleteLink.php |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2017 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*
*/
/**
* Created by PhpStorm.
* User: buddha
* Date: 21.07.2017
* Time: 17:28
*/
namespace humhub\modules\calendar\widgets;
use Yii;
use humhub\modules\calendar\models\CalendarEntry;
use humhub\modules\content\widgets\WallEntryControlLink;
use humhub\modules\calendar\helpers\Url;
class DeleteLink extends WallEntryControlLink
{
/**
* @var CalendarEntry
*/
public $entry;
public function init()
{
$this->label = Yii::t('ContentModule.base', 'Delete');
$this->icon = 'fa-trash';
$this->options = [
'data-action-click' => 'calendar.deleteEvent',
'data-action-target' =>"[data-content-key='".$this->entry->content->id."']",
'data-action-url' => Url::toEntryDelete($this->entry, 1)
];
parent::init();
}
}