📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: Holiday.php
<?php /* vim: set expandtab tabstop=4 shiftwidth=4: */ /** * Holiday.php * * PHP Version 5 * * Copyright (c) 1997-2008 The PHP Group * * This source file is subject to version 3.0 of the PHP license, * that is bundled with this package in the file LICENSE, and is * available at through the world-wide-web at * http://www.php.net/license/3_01.txt. * If you did not receive a copy of the PHP license and are unable to * obtain it through the world-wide-web, please send a note to * license@php.net so we can mail you a copy immediately. * * @category Date * @package Date_Holidays * @author Carsten Lucke <luckec@tool-garage.de> * @license http://www.php.net/license/3_01.txt PHP License 3.0.1 * @version CVS: $Id$ * @link http://pear.php.net/package/Date_Holidays */ /** * Simple class that wraps a holiday's data * * @category Date * @package Date_Holidays * @author Carsten Lucke <luckec@tool-garage.de> * @license http://www.php.net/license/3_01.txt PHP License 3.0.1 * @version CVS: $Id$ * @link http://pear.php.net/package/Date_Holidays */ class Date_Holidays_Holiday { /** * Internal name * * @access private * @var string */ var $_internalName; /** * Title * * @access private * @var string */ var $_title; /** * Date * * @access private * @var object Date */ var $_date; /** * Additional holiday properties like a more detailed description, etc. * * @access private * @var array */ var $_properties; /** * Constructor * * @param string $internalName internal name * @param string $title title * @param object &$date date * @param array $properties properties for this holiday * * @access public * @return void */ function Date_Holidays_Holiday($internalName, $title, &$date, $properties) { $this->_internalName = $internalName; $this->_title = $title; $this->_date = null; $this->_properties = array(); if (is_a($date, 'Date')) { $this->_date = $date; } if (is_array($properties)) { $this->_properties = $properties; } } /** * Returns the internal name * * @access public * @return string internal name */ function getInternalName() { return $this->_internalName; } /** * Returns the title * * @access public * @return string title */ function getTitle() { return $this->_title; } /** * Returns the date * * @access public * @return object Date date */ function getDate() { return $this->_date; } /** * Set the internal name * * @param string $internalName internal name * * @access public * @return void */ function setInternalName($internalName) { $this->_internalName = $internalName; } /** * Set the title * * @param string $title title * * @access public * @return void */ function setTitle($title) { $this->_title = $title; } /** * Set the date * * @param object &$date date * * @access public * @return void */ function setDate(&$date) { $this->_date = $date; } /** * Returns the holiday data as an array. * * Format: * <pre> * array( * 'internalName' => 'easter' * 'title' => 'Easter Sunday' * 'date' => Object of type Date * ) * </pre> * * @access public * @return array holiday-data */ function toArray() { $data = array(); $data['internalName'] = $this->_internalName; $data['title'] = $this->_title; $data['date'] = $this->_date; return $data; } /** * Returns the holidays additional properties that contain information * like a more detailed description, etc. * * @access public * @return array associative array with corresponding pairs * of propertyName => $propertyValue */ function getProperties() { return $this->_properties; } } ?>
Save