\Ceo\Core\ManagersMentionManager

Mention manager handles parsing mentions from text, association with models and message generation. All mentionable models must have SRNs

Managers provide a service layer in front of models. Managers implement domain specific logic, checks and initialization that would normally live in multiple controllers.

Summary

Methods
Properties
Constants
save()
getPaginator()
restDelete()
restCreate()
restUpdate()
findFirstById()
findFirst()
find()
parseMentions()
getMentions()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
No private properties found
N/A

Methods

save()

save(object  $obj) : object

Save handler, because DRY

Parameters

object $obj

Model to be saved

Throws

\Ceo\Core\Managers\Exception

Json encoded string of validation errors

Returns

object —

Model

getPaginator()

getPaginator(integer  $page = 1, integer  $limit = 50) : \Ceo\Core\Managers\Ceo\Core\ModelHelpers\Paginator

Helps paginate models using the query bulder. Bit more complicated than the native array method, but works better for larger data sets

Because it's based on Phalcon's QueryBuilder, it supports a fluent filtering interface:

    $manager = $this->foo_manager;
    $items = $manager->getPaginator(1, 20)
        ->orderBy('created_at desc')
        ->where('name = :name:', array('name' => $name))
        ->andWhere('type = :type:', array('type' => $type))
        ->paginate();

    echo json_encode($items);

Parameters

integer $page

Current page

integer $limit

Per page limit

Returns

\Ceo\Core\Managers\Ceo\Core\ModelHelpers\Paginator

restDelete()

restDelete(\Ceo\Core\Managers\number  $id) : boolean

Delete an object with rest

Parameters

\Ceo\Core\Managers\number $id

Throws

\Exception

Returns

boolean

restCreate()

restCreate(array  $data) 

Create a new object

Parameters

array $data

restUpdate()

restUpdate(integer  $id, array  $data) 

Update an existing object

Parameters

integer $id
array $data

findFirstById()

findFirstById(  $params = null) 

Parameters

$params

findFirst()

findFirst(  $params = null) 

Parameters

$params

find()

find(  $params = null) 

Parameters

$params

parseMentions()

parseMentions(object  $obj, array  $fields,   $mentioner = false) : array

Parses mentions for given fields. Will return an array of NEW mentions, as multiple mention records will not be created for existing mentions.

You can retrieve all mentions by using the getMentions method.

Parameters

object $obj

The parent object

array $fields

The fields to check

$mentioner

Returns

array —

Array of new mentions

getMentions()

getMentions(string  $srn) : array

Return all mentions for a given SRN

Parameters

string $srn

SRN

Returns

array —

of Mention objects