Merge "Don't retry invalid thumbnail requests due to impossible width"
[mediawiki.git] / includes / db / IORMRow.php
blobc66cddfd5dd9f96a310874ba2db323a21d0cbb77
1 <?php
2 /**
3 * Interface for representing objects that are stored in some DB table.
4 * This is basically an ORM-like wrapper around rows in database tables that
5 * aims to be both simple and very flexible. It is centered around an associative
6 * array of fields and various methods to do common interaction with the database.
8 * Documentation inline and at https://www.mediawiki.org/wiki/Manual:ORMTable
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
25 * @since 1.20
27 * @file
28 * @ingroup ORM
30 * @license GNU GPL v2 or later
31 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
34 interface IORMRow {
35 /**
36 * Load the specified fields from the database.
38 * @since 1.20
39 * @deprecated since 1.22
41 * @param array|null $fields
42 * @param bool $override
43 * @param bool $skipLoaded
45 * @return bool Success indicator
47 public function loadFields( $fields = null, $override = true, $skipLoaded = false );
49 /**
50 * Gets the value of a field.
52 * @since 1.20
54 * @param string $name
55 * @param mixed $default
57 * @throws MWException
58 * @return mixed
60 public function getField( $name, $default = null );
62 /**
63 * Gets the value of a field but first loads it if not done so already.
65 * @since 1.20
66 * @deprecated since 1.22
68 * @param string $name
70 * @return mixed
72 public function loadAndGetField( $name );
74 /**
75 * Remove a field.
77 * @since 1.20
79 * @param string $name
81 public function removeField( $name );
83 /**
84 * Returns the objects database id.
86 * @since 1.20
88 * @return int|null
90 public function getId();
92 /**
93 * Sets the objects database id.
95 * @since 1.20
97 * @param int|null $id
99 public function setId( $id );
102 * Gets if a certain field is set.
104 * @since 1.20
106 * @param string $name
108 * @return bool
110 public function hasField( $name );
113 * Gets if the id field is set.
115 * @since 1.20
117 * @return bool
119 public function hasIdField();
122 * Sets multiple fields.
124 * @since 1.20
126 * @param array $fields The fields to set
127 * @param bool $override Override already set fields with the provided values?
129 public function setFields( array $fields, $override = true );
132 * Serializes the object to an associative array which
133 * can then easily be converted into JSON or similar.
135 * @since 1.20
137 * @param null|array $fields
138 * @param bool $incNullId
140 * @return array
142 public function toArray( $fields = null, $incNullId = false );
145 * Load the default values, via getDefaults.
147 * @since 1.20
148 * @deprecated since 1.22
150 * @param bool $override
152 public function loadDefaults( $override = true );
155 * Writes the answer to the database, either updating it
156 * when it already exists, or inserting it when it doesn't.
158 * @since 1.20
160 * @param string|null $functionName
161 * @deprecated since 1.22
163 * @return bool Success indicator
165 public function save( $functionName = null );
168 * Removes the object from the database.
170 * @since 1.20
171 * @deprecated since 1.22
173 * @return bool Success indicator
175 public function remove();
178 * Return the names and values of the fields.
180 * @since 1.20
182 * @return array
184 public function getFields();
187 * Return the names of the fields.
189 * @since 1.20
191 * @return array
193 public function getSetFieldNames();
196 * Sets the value of a field.
197 * Strings can be provided for other types,
198 * so this method can be called from unserialization handlers.
200 * @since 1.20
202 * @param string $name
203 * @param mixed $value
205 * @throws MWException
207 public function setField( $name, $value );
210 * Add an amount (can be negative) to the specified field (needs to be numeric).
212 * @since 1.20
213 * @deprecated since 1.22
215 * @param string $field
216 * @param int $amount
218 * @return bool Success indicator
220 public function addToField( $field, $amount );
223 * Return the names of the fields.
225 * @since 1.20
227 * @return array
229 public function getFieldNames();
232 * Computes and updates the values of the summary fields.
234 * @since 1.20
235 * @deprecated since 1.22
237 * @param array|string|null $summaryFields
239 public function loadSummaryFields( $summaryFields = null );
242 * Sets the value for the @see $updateSummaries field.
244 * @since 1.20
245 * @deprecated since 1.22
247 * @param bool $update
249 public function setUpdateSummaries( $update );
252 * Sets the value for the @see $inSummaryMode field.
254 * @since 1.20
255 * @deprecated since 1.22
257 * @param bool $summaryMode
259 public function setSummaryMode( $summaryMode );
262 * Returns the table this IORMRow is a row in.
264 * @since 1.20
265 * @deprecated since 1.22
267 * @return IORMTable
269 public function getTable();