Compare commits

...

3 Commits

Author SHA1 Message Date
Guy Sartorelli
5f678c0bef
Merge b5f079bf7d5608056857b59ff81264db8e84adf6 into ec75c3a8d4a5541eb25dd97914fda52d74ef7894 2024-09-23 22:18:21 +00:00
Guy Sartorelli
b5f079bf7d
DOC Update docs to reflect new sake commands 2024-09-24 10:18:15 +12:00
Guy Sartorelli
ec75c3a8d4
API Use new names for renamed classes (#308) 2024-09-23 14:38:41 +12:00
3 changed files with 7 additions and 7 deletions

View File

@ -6,4 +6,4 @@ To install this module, [download and install Composer](https://getcomposer.org/
$ composer require silverstripe/tagfield
```
Then run `/dev/build`, from either the command line or the browser. You'll then be able to use this field in your application.
Then run `sake db:build --flush`, from the command line or visit `/dev/build?flush` in the browser. You'll then be able to use this field in your application.

View File

@ -8,11 +8,11 @@ use SilverStripe\Control\HTTPRequest;
use SilverStripe\Control\HTTPResponse;
use SilverStripe\Forms\DropdownField;
use SilverStripe\Forms\Validator;
use SilverStripe\ORM\ArrayList;
use SilverStripe\Model\List\ArrayList;
use SilverStripe\ORM\DataObject;
use SilverStripe\ORM\DataObjectInterface;
use SilverStripe\ORM\SS_List;
use SilverStripe\View\ArrayData;
use SilverStripe\Model\List\SS_List;
use SilverStripe\Model\ArrayData;
use SilverStripe\View\Requirements;
/**

View File

@ -9,14 +9,14 @@ use SilverStripe\Control\HTTPResponse;
use SilverStripe\Core\Injector\Injector;
use SilverStripe\Forms\MultiSelectField;
use SilverStripe\Forms\Validator;
use SilverStripe\ORM\ArrayList;
use SilverStripe\Model\List\ArrayList;
use SilverStripe\ORM\DataList;
use SilverStripe\ORM\DataObject;
use SilverStripe\ORM\DataObjectInterface;
use SilverStripe\ORM\FieldType\DBMultiEnum;
use SilverStripe\ORM\Relation;
use SilverStripe\ORM\SS_List;
use SilverStripe\View\ArrayData;
use SilverStripe\Model\List\SS_List;
use SilverStripe\Model\ArrayData;
/**
* Provides a tagging interface, storing links between tag DataObjects and a parent DataObject.