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.149.246.99
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 /
boaz /
src /
Repository /
[ HOME SHELL ]
Name
Size
Permission
Action
CargoRepository.php
1.95
KB
-rw-rw-r--
DepotRepository.php
2.21
KB
-rw-rw-r--
LoadingRepository.php
1.94
KB
-rw-rw-r--
ReleaseOrderRepository.php
8.66
KB
-rw-rw-r--
SubcargoRepository.php
424
B
-rw-rw-r--
UserDepotRepository.php
3.11
KB
-rw-rw-r--
UserRepository.php
463
B
-rw-rw-r--
googleda794cd9937527d01.html
33
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : LoadingRepository.php
<?php namespace App\Repository; /** * LoadingRepository * * This class was generated by the Doctrine ORM. Add your own custom * repository methods below. */ class LoadingRepository extends \Doctrine\ORM\EntityRepository { public function findByRelease($id) { return $this->getEntityManager() ->createQuery( 'SELECT l FROM App\Entity\Loading l WHERE l.release = :id' )->setParameter('id', $id) ->getResult(); } public function deleteByRelease($id) { return $this->getEntityManager() ->createQuery( 'DELETE FROM App\Entity\Loading l WHERE l.release = :id' )->setParameter('id', $id) ->getResult(); } public function findByFilter($filter) { $fin = date('d-m-Y'); $date = date_create($fin); date_sub($date,date_interval_create_from_date_string('12 days')); $init = date_format($date,"d-m-Y"); return $this->getEntityManager() ->createQuery( 'SELECT l FROM App\Entity\Loading l WHERE l.date BETWEEN :init AND :fin' )->setParameter('init', $init) ->setParameter('fin', $fin) ->getResult(); } public function findByDate($from, $to) { return $this->getEntityManager() ->createQuery( 'SELECT l FROM App\Entity\Loading l WHERE l.date BETWEEN :fro AND :to' )->setParameter('fro', $from) ->setParameter('to', $to) ->getResult(); } public function findByCustomer($customer) { return $this->getEntityManager() ->createQuery( 'SELECT r.customer FROM App\Entity\Loading l, App\Entity\ReleaseOrder r WHERE l.release = r.id AND r.customer = :customer' )->setParameter('customer', $customer) ->getResult(); } public function findLoadedTotal($id) { return $this->createQueryBuilder('l') ->andWhere('l.release = :id') ->setParameter('id', $id) ->select('SUM(l.quantity) as quantity') ->getQuery() ->getOneOrNullResult(); } }
Close