Initial commit

This commit is contained in:
2020-01-27 08:56:08 +01:00
commit b7525048d6
27129 changed files with 3409855 additions and 0 deletions

View File

@@ -0,0 +1,181 @@
<?php
/**
* This class has been generated by TheliaStudio
* For more information, see https://github.com/thelia-modules/TheliaStudio
*/
namespace SupportTicket\Event\Base;
use Thelia\Core\Event\ActionEvent;
use SupportTicket\Model\SupportTicket;
/**
* Class SupportTicketEvent
* @package SupportTicket\Event\Base
* @author TheliaStudio
*/
class SupportTicketEvent extends ActionEvent
{
protected $id;
protected $status;
protected $customerId;
protected $adminId;
protected $orderId;
protected $orderProductId;
protected $subject;
protected $message;
protected $response;
protected $repliedAt;
protected $comment;
protected $supportTicket;
public function getId()
{
return $this->id;
}
public function setId($id)
{
$this->id = $id;
return $this;
}
public function getStatus()
{
return $this->status;
}
public function setStatus($status)
{
$this->status = $status;
return $this;
}
public function getCustomerId()
{
return $this->customerId;
}
public function setCustomerId($customerId)
{
$this->customerId = $customerId;
return $this;
}
public function getAdminId()
{
return $this->adminId;
}
public function setAdminId($adminId)
{
$this->adminId = $adminId;
return $this;
}
public function getOrderId()
{
return $this->orderId;
}
public function setOrderId($orderId)
{
$this->orderId = $orderId;
return $this;
}
public function getOrderProductId()
{
return $this->orderProductId;
}
public function setOrderProductId($orderProductId)
{
$this->orderProductId = $orderProductId;
return $this;
}
public function getSubject()
{
return $this->subject;
}
public function setSubject($subject)
{
$this->subject = $subject;
return $this;
}
public function getMessage()
{
return $this->message;
}
public function setMessage($message)
{
$this->message = $message;
return $this;
}
public function getResponse()
{
return $this->response;
}
public function setResponse($response)
{
$this->response = $response;
return $this;
}
/**
* @return mixed
*/
public function getRepliedAt()
{
return $this->repliedAt;
}
/**
* @param mixed $repliedAt
*/
public function setRepliedAt($repliedAt)
{
$this->repliedAt = $repliedAt;
return $this;
}
public function getComment()
{
return $this->comment;
}
public function setComment($comment)
{
$this->comment = $comment;
return $this;
}
public function getSupportTicket()
{
return $this->supportTicket;
}
public function setSupportTicket(SupportTicket $supportTicket)
{
$this->supportTicket = $supportTicket;
return $this;
}
}

View File

@@ -0,0 +1,19 @@
<?php
/**
* This class has been generated by TheliaStudio
* For more information, see https://github.com/thelia-modules/TheliaStudio
*/
namespace SupportTicket\Event\Base;
/**
* Class SupportTicketEvents
* @package SupportTicket\Event\Base
* @author TheliaStudio
*/
class SupportTicketEvents
{
const CREATE = "action.support_ticket.create";
const UPDATE = "action.support_ticket.update";
const DELETE = "action.support_ticket.delete";
}

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" ?>
<dwsync>
<file name="SupportTicketEvent.php" server="51.254.220.106//web/" local="131351950200000000" remote="131351950200000000" />
<file name="SupportTicketEvents.php" server="51.254.220.106//web/" local="131351950200000000" remote="131351950200000000" />
</dwsync>