Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.21.247.221
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
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
/
home /
ifk /
web.back /
v2021 /
protected /
Common /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
KAdminPage.php
346
B
-rw-r--r--
KApplication.php
313
B
-rw-r--r--
KAuthor.php
1.3
KB
-rw-r--r--
KBooleanColumn.php
1.57
KB
-rw-r--r--
KClass.php
1.85
KB
-rw-r--r--
KClassGiver.php
1.04
KB
-rw-r--r--
KClassMaterialFile.php
2.81
KB
-rw-r--r--
KContentItem.php
3.3
KB
-rw-r--r--
KDuty.php
2.82
KB
-rw-r--r--
KImage.php
7.01
KB
-rw-r--r--
KImageManager.php
1.73
KB
-rw-r--r--
KNewsItem.php
4.27
KB
-rw-r--r--
KPage.php
1.96
KB
-rw-r--r--
KPaper.php
13.62
KB
-rw-r--r--
KRightBox.php
2.82
KB
-rw-r--r--
KScheduleEntry.php
3.67
KB
-rw-r--r--
KUser.php
1.55
KB
-rw-r--r--
KUserRecord.php
10.81
KB
-rw-r--r--
PEmailer.php
445
B
-rw-r--r--
PErrorHandler.php
4.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : KScheduleEntry.php
<?php class KScheduleEntry extends TActiveRecord { const TABLE='ifk_scheduleentries'; public static $_block_hours = array( "08:00 – 09:30", "09:45 – 11:15", "11:30 – 13:00", "13:15 – 14:45", "15:00 – 16:30", "16:45 – 18:15", "18:30 – 20:00" ); public static function getEntries($block, $group_id) { $sql = "select se.* from ifk_scheduleentries as se join ifk_classcatalog as cs on cs.group_id=".TPropertyValue::ensureInteger($group_id)." where se.block=".TPropertyValue::ensureInteger($block)." and se.class_id = cs.id order by id"; return self::finder()->findAllbySQL($sql); } private $_id; private $_block; private $_class_id; private $_place; private $_notes; private $_givers; private $_last_giver_pos; private $_class; public $blocks; //select-time temp public function getId() {return $this->_id;} public function setId($value) {$this->_id = TPropertyValue::ensureInteger($value);} public function getBlock() {return $this->_block;} public function setBlock($value) {$this->_block = TPropertyValue::ensureInteger($value);} public function getClass_id() {return $this->_class_id;} public function setClass_id($value) {$this->_class_id = TPropertyValue::ensureInteger($value);} public function getClass() { if(is_null($this->_class)) $this->_class = KClass::finder()->findByPk($this->class_id); return $this->_class; } public function getPlace() {return $this->_place;} public function setPlace($value) {$this->_place = TPropertyValue::ensureString($value);} public function getNotes() {return $this->_notes;} public function setNotes($value) {$this->_notes = TPropertyValue::ensureString($value);} public function getDescription($with_links = false) { $description = "<strong>"; if ($with_links) $description .= "<a class='classname' href='".Prado::getApplication()->getService()->constructUrl('Front.ClassDetails', array('cid'=>$this->class_id))."'>"; $description .= $this->Class->name; if ($with_links) $description .= "</a>"; $description .= "</strong><br/>"; $givers = array(); $n = 0; foreach($this->Classgivers as $gc) { if (($person = KUserRecord::parseAuthorEntry($gc->name)) instanceof KUserRecord) { if ($with_links) $givers[$n] ="<a class='person' href='".$person->getUrl($person->id)."'>"; $givers[$n] .= $person->NameAndTitle; if ($with_links) $givers[$n] .= "</a>"; } else $givers[$n] = $gc->name; if ($gc->notes != '') $givers[$n] .= ' ('.$gc->notes.')'; $n++; } $description .= implode(', ', $givers)."<br/>"; $description .= $this->place; if ($this->notes != '') $description .= '<br/>('.$this->notes.')'; return $description; } public function getClassgivers() { if (!is_null($this->id)) { if (is_null($this->_givers)) { $crit = new TActiveRecordCriteria; $crit->OrdersBy['sort_pos'] = 'asc'; $crit->Condition = "schedule_id = ".$this->id; $this->_givers = KClassGiver::finder()->findAll($crit); } return $this->_givers; } else return array(); } public function clearClassgivers() { $this->_last_giver_pos = 0; KClassGiver::finder()->deleteBySchedule_id($this->id); } public function addClassgiver($name, $notes) { $_cg = new KClassGiver; $_cg->schedule_id = $this->id; $_cg->name = $name; $_cg->notes = $notes; $_cg->sort_pos = $this->_last_giver_pos++; $_cg->save(); } public function delete() { $this->clearClassgivers(); parent::delete(); } public static function finder($className=__CLASS__) { return parent::finder($className); } } ?>
Close