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.79
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\UserContact; /** * UserContactRepository * * This class was generated by the Doctrine ORM. Add your own custom * repository methods below. */ class UserContactRepository extends \Doctrine\ORM\EntityRepository { /** * Get object linked * * @param array $params * @return UserContact */ public function getLinkedObject($params) { $qb = $this->createQueryBuilder('uc') ->join('uc.user_list', 'ul') ->where('1 = 1'); if (isset($params['created_by']) && strlen($params['created_by']) > 0) { $qb = $qb->andWhere('uc.created_by = :createdBy')->setParameter('createdBy', $params['created_by']); } if (isset($params['user_list']) && is_object($params['user_list'])) { $qb = $qb->andWhere('ul.id = :userListId')->setParameter('userListId', $params['user_list']); } if (isset($params['company_id']) && strlen($params['company_id']) > 0) { $qb = $qb->andWhere('uc.company_id = :companyId')->setParameter('companyId', $params['company_id']); } // echo $qb->getQuery()->getSQL() . "\r\n"; return $qb->getQuery()->getOneOrNullResult(); } }