PHP code example of admad / cakephp-sequence

1. Go to this page and download the library: Download admad/cakephp-sequence library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

admad / cakephp-sequence example snippets


$this->addBehavior('ADmad/Sequence.Sequence');

$this->addBehavior('ADmad/Sequence.Sequence', [
    'sequenceField' => 'position', // Field to use to store integer sequence. Default "position".
    'scope' => ['group_id'], // Array of field names to use for grouping records. Default [].
    'startAt' => 1, // Initial value for sequence. Default 1.
]);

$modelObject->moveUp($entity);

$modelObject->moveDown($entity);