init without trunk
This commit is contained in:
parent
ed24ac4994
commit
bb809e7233
14652 changed files with 177862 additions and 94817 deletions
151
vendor/gedmo/doctrine-extensions/lib/Gedmo/Tree/Strategy.php
vendored
Normal file
151
vendor/gedmo/doctrine-extensions/lib/Gedmo/Tree/Strategy.php
vendored
Normal file
|
|
@ -0,0 +1,151 @@
|
|||
<?php
|
||||
|
||||
namespace Gedmo\Tree;
|
||||
|
||||
use Doctrine\Common\Persistence\ObjectManager;
|
||||
use Gedmo\Mapping\Event\AdapterInterface;
|
||||
|
||||
interface Strategy
|
||||
{
|
||||
/**
|
||||
* NestedSet strategy
|
||||
*/
|
||||
const NESTED = 'nested';
|
||||
|
||||
/**
|
||||
* Closure strategy
|
||||
*/
|
||||
const CLOSURE = 'closure';
|
||||
|
||||
/**
|
||||
* Materialized Path strategy
|
||||
*/
|
||||
const MATERIALIZED_PATH = 'materializedPath';
|
||||
|
||||
/**
|
||||
* Get the name of strategy
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getName();
|
||||
|
||||
/**
|
||||
* Initialize strategy with tree listener
|
||||
*
|
||||
* @param TreeListener $listener
|
||||
*/
|
||||
public function __construct(TreeListener $listener);
|
||||
|
||||
/**
|
||||
* Operations after metadata is loaded
|
||||
*
|
||||
* @param ObjectManager $om
|
||||
* @param object $meta
|
||||
*/
|
||||
public function processMetadataLoad($om, $meta);
|
||||
|
||||
/**
|
||||
* Operations on tree node insertion
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
* @param AdapterInterface $ea - event adapter
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processScheduledInsertion($om, $object, AdapterInterface $ea);
|
||||
|
||||
/**
|
||||
* Operations on tree node updates
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
* @param AdapterInterface $ea - event adapter
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processScheduledUpdate($om, $object, AdapterInterface $ea);
|
||||
|
||||
/**
|
||||
* Operations on tree node delete
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processScheduledDelete($om, $object);
|
||||
|
||||
/**
|
||||
* Operations on tree node removal
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processPreRemove($om, $object);
|
||||
|
||||
/**
|
||||
* Operations on tree node persist
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processPrePersist($om, $object);
|
||||
|
||||
/**
|
||||
* Operations on tree node update
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processPreUpdate($om, $object);
|
||||
|
||||
/**
|
||||
* Operations on tree node insertions
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
* @param AdapterInterface $ea - event adapter
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processPostPersist($om, $object, AdapterInterface $ea);
|
||||
|
||||
/**
|
||||
* Operations on tree node updates
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
* @param AdapterInterface $ea - event adapter
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processPostUpdate($om, $object, AdapterInterface $ea);
|
||||
|
||||
/**
|
||||
* Operations on tree node removals
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param object $object - node
|
||||
* @param AdapterInterface $ea - event adapter
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function processPostRemove($om, $object, AdapterInterface $ea);
|
||||
|
||||
/**
|
||||
* Operations on the end of flush process
|
||||
*
|
||||
* @param ObjectManager $om - object manager
|
||||
* @param AdapterInterface $ea - event adapter
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function onFlushEnd($om, AdapterInterface $ea);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue