mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #4532 from tractorcow/pulls/3.2/packages
Add missing packages
This commit is contained in:
commit
942ef04664
@ -1,13 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package framework
|
||||
* @subpackage admin
|
||||
*/
|
||||
|
||||
/**
|
||||
* LeftAndMain is the parent class of all the two-pane views in the CMS.
|
||||
* If you are wanting to add more areas to the CMS, you can do it by subclassing LeftAndMain.
|
||||
*
|
||||
* This is essentially an abstract class which should be subclassed.
|
||||
* See {@link CMSMain} for a good example.
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage admin
|
||||
*/
|
||||
class LeftAndMain extends Controller implements PermissionProvider {
|
||||
|
||||
|
@ -10,6 +10,9 @@
|
||||
* @todo A getter for cookies that haven't been sent to the browser yet
|
||||
* @todo Tests / a way to set the state without hacking with $_COOKIE
|
||||
* @todo Store the meta information around cookie setting (path, domain, secure, etc)
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage misc
|
||||
*/
|
||||
class CookieJar implements Cookie_Backend {
|
||||
|
||||
|
@ -4,6 +4,9 @@
|
||||
* The Cookie_Backend interface for use with `Cookie::$inst`.
|
||||
*
|
||||
* See Cookie_DefaultBackend and Cookie
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage misc
|
||||
*/
|
||||
interface Cookie_Backend {
|
||||
|
||||
|
@ -13,6 +13,9 @@
|
||||
*
|
||||
* WARNING: This class is experimental and designed specifically for use pre-startup in main.php
|
||||
* It will likely be heavily refactored before the release of 3.2
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage misc
|
||||
*/
|
||||
class ErrorControlChain {
|
||||
public static $fatal_errors = null; // Initialised after class definition
|
||||
|
@ -9,6 +9,9 @@
|
||||
*
|
||||
* WARNING: This class is experimental and designed specifically for use pre-startup in main.php
|
||||
* It will likely be heavily refactored before the release of 3.2
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage misc
|
||||
*/
|
||||
class ParameterConfirmationToken {
|
||||
|
||||
|
@ -4,6 +4,9 @@
|
||||
* Generic PhpUnitWrapper.
|
||||
* Originally intended for use with Composer based installations, but will work
|
||||
* with any fully functional autoloader.
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage dev
|
||||
*/
|
||||
class PhpUnitWrapper_Generic extends PhpUnitWrapper {
|
||||
|
||||
|
@ -5,6 +5,9 @@
|
||||
*
|
||||
* By default streams unbuffered data, but seek(), rewind(), or numRecords() will force the statement to
|
||||
* buffer itself and sacrifice any potential performance benefit.
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage model
|
||||
*/
|
||||
class MySQLStatement extends SS_Query {
|
||||
|
||||
|
@ -1,11 +1,14 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package framework
|
||||
* @subpackage model
|
||||
*/
|
||||
|
||||
/**
|
||||
* Object representing a SQL SELECT query.
|
||||
* The various parts of the SQL query can be manipulated individually.
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage model
|
||||
* @deprecated since version 4.0
|
||||
*/
|
||||
class SQLQuery extends SQLSelect {
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
/**
|
||||
* Provides a security interface functionality within the cms
|
||||
* @package framework
|
||||
* @subpackage security
|
||||
*/
|
||||
class CMSSecurity extends Security {
|
||||
|
||||
|
@ -4,6 +4,9 @@ namespace SilverStripe\Framework\Injector;
|
||||
|
||||
/**
|
||||
* A factory which is used for creating service instances.
|
||||
*
|
||||
* @package framework
|
||||
* @subpackage injector
|
||||
*/
|
||||
interface Factory {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user