\

Namespaces

Ceo

Classes

AclTask ACL management
BaseShellCommand
BaseTask BaseTask provides core functionality to tasks
CeoBootstrap
CeoCli
CurlClass
daemonTask CEO Socket Server for plugin connections
DataManagerTask Data manager service
issuu
LicenseTask License Task
MessageQueueTask Message Queue Task
PhinxTask Phinx Task
PublicationTask Publication Task
QueueBootstrap
QueueTask Queue management
ReactTask React Task
SeederTask CEO seeder
ShellTask Shell Task
SocketBootstrap
SphinxTask Sphinx management for the command line
TestSupportTask CEO test support for the command line
UserTask CEO User management for the command line
WebcronCommand
WebcronTask Webcron service

Constants

APP_PATH

APP_PATH

BASE_PATH

BASE_PATH

Functions

array_kpluck()

array_kpluck(  $arr, string  $search) : mixed

Remove a value from array, searching by key, return the value and reduce the array size by one.

$arr = ['a' => 'foo', 'b' => 'bar', 'c' => 'baz'];
echo array_kpluck($arr, 'b'); // 'bar'
var_export($arr); // ['a' => 'foo', 'c' => 'baz']

Parameters

$arr
string $search

key value

Returns

mixed

array_pluck()

array_pluck(  $arr, string  $search) : mixed

Remove a value from array, return the value and reduce the array size by one.

$arr = ['a', 'b', 'c'];
echo array_pluck($arr, 'b'); // 'b'
var_export($arr); // ['a', 'c']

Parameters

$arr
string $search

value

Returns

mixed