Метод | Описание | |
---|---|---|
dispense ( string $type, string $number = 1, boolean $alwaysReturnArray = FALSE ) : RedBeanPHP\OODBBean | Dispenses a new bean (a OODBBean Bean Object) of the specified type. Always use this function to get an empty bean object. Never instantiate a OODBBean yourself because it needs to be configured before you can use it with RedBean. This function applies the appropriate initialization / configuration for you. | |
load ( string $type, integer $id ) : RedBeanPHP\OODBBean | Loads a bean from the object database. |
Метод | Описание | |
---|---|---|
handleException ( Exception $exception ) : void | Handles exceptions. Suppresses exceptions caused by missing structures. | |
processAdditions ( RedBeanPHP\OODBBean $bean, array $ownAdditions ) : void | Part of the store() functionality. | |
storeBean ( RedBeanPHP\OODBBean $bean ) : void | Stores a cleaned bean; i.e. only scalar values. This is the core of the store() method. When all lists and embedded beans (parent objects) have been processed and removed from the original bean the bean is passed to this method to be stored in the database. |
Метод | Описание | |
---|---|---|
createTableIfNotExists ( RedBeanPHP\OODBBean $bean, string $table ) : void | Orders the Query Writer to create a table if it does not exist already and adds a note in the build report about the creation. | |
getTypeFromCast ( string $cast ) : integer | Figures out the desired type given the cast string ID. | |
modifySchema ( RedBeanPHP\OODBBean $bean, string $property, mixed $value ) : void | Modifies the table to fit the bean data. |
public dispense ( string $type, string $number = 1, boolean $alwaysReturnArray = FALSE ) : RedBeanPHP\OODBBean | ||
$type | string | type of bean you want to dispense |
$number | string | number of beans you would like to get |
$alwaysReturnArray | boolean | if TRUE always returns the result as an array |
Результат | RedBeanPHP\OODBBean |
protected handleException ( Exception $exception ) : void | ||
$exception | Exception | exception |
Результат | void |
protected processAdditions ( RedBeanPHP\OODBBean $bean, array $ownAdditions ) : void | ||
$bean | RedBeanPHP\OODBBean | bean to process |
$ownAdditions | array | list of addition beans in own-list |
Результат | void |