mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
25 lines
643 B
PHP
25 lines
643 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Minimum level extra fields required by extensions that are versonable
|
||
|
*/
|
||
|
interface VersionableExtension {
|
||
|
|
||
|
/**
|
||
|
* Determine if the given table is versionable
|
||
|
*
|
||
|
* @param string $table
|
||
|
* @return bool True if versioned tables should be built for the given suffix
|
||
|
*/
|
||
|
public function isVersionedTable($table);
|
||
|
|
||
|
/**
|
||
|
* Update fields and indexes for the versonable suffix table
|
||
|
*
|
||
|
* @param string $suffix Table suffix being built
|
||
|
* @param array $fields List of fields in this model
|
||
|
* @param array $indexes List of indexes in this model
|
||
|
*/
|
||
|
public function updateVersionableFields($suffix, &$fields, &$indexes);
|
||
|
}
|