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