Go to file
Robbie Averill 1b61eadda7 Merge branch '1.1' into 1.2 2019-02-20 10:54:58 +07:00
code Merge branch '1.1' into 1.2 2019-02-19 11:31:32 +07:00
css BUG Fix duplicate tag creation 2015-11-04 14:19:25 +13:00
docs/en Made supported 2015-09-09 13:28:43 +12:00
js Upgrading select2 code to the latest version. This fixes a rendering bug in safari where the hidden text box has a border displayed around it, making it not so hidden. 2015-09-03 20:22:01 +09:30
templates Moved source code 2015-04-14 13:15:28 +12:00
tests FIX Tests with hard coded IDs 2016-01-05 08:59:37 +00:00
.editorconfig Added standard editor config 2015-11-19 13:26:56 +13:00
.gitattributes Added standard git attributes 2015-11-19 19:13:48 +13:00
.gitignore Moved source code 2015-04-14 13:15:28 +12:00
.scrutinizer.yml Added standard Scrutinizer config 2015-11-18 15:32:40 +13:00
.travis.yml Merge branch '1.1' into 1.2 2019-02-20 10:54:58 +07:00
_config.php Moved source code 2015-04-14 13:15:28 +12:00
changelog.md Alias master as 1.2.x-dev 2016-02-04 17:43:50 +13:00
code-of-conduct.md Added standard code of conduct 2015-11-21 20:17:21 +13:00
composer.json Alias master as 1.2.x-dev 2016-02-04 17:43:50 +13:00
contributing.md Made supported 2015-09-09 13:28:43 +12:00
license.md Updated license year 2016-01-01 06:38:06 +13:00
readme.md Made supported 2015-09-09 13:28:43 +12:00

readme.md

Tag Field

Custom tag input field, for SilverStripe.

Build Status Code Quality Code Coverage Version License

Requirements

  • SilverStripe 3.1 or newer
  • Database: MySQL 5+, SQLite3, Postgres 8.3, SQL Server 2008

Installing

$ composer require silverstripe/tagfield

Using

Relational Tags

class BlogPost extends DataObject {
	private static $many_many = array(
		'BlogTags' => 'BlogTag'
	);
}
class BlogTag extends DataObject {
	private static $db = array(
		'Title' => 'Varchar(200)',
	);

	private static $belongs_many_many = array(
		'BlogPosts' => 'BlogPost'
	);
}
$field = TagField::create(
	'BlogTags',
	'Blog Tags',
	BlogTag::get(),
	$this->BlogTags()
)
	->setShouldLazyLoad(true) // tags should be lazy loaded
	->setCanCreate(true);     // new tag DataObjects can be created

String Tags

class BlogPost extends DataObject {
	private static $db = array(
		'Tags' => 'Text'
	);
}
$field = StringTagField::create(
	'Tags',
	'Tags',
	array('one', 'two'),
	explode(',', $this->Tags)
);

$field->setShouldLazyLoad(true); // tags should be lazy loaded

You can find more in-depth documentation in docs/en.

Versioning

This library follows Semver. According to Semver, you will be able to upgrade to any minor or patch version of this library without any breaking changes to the public API. Semver also requires that we clearly define the public API for this library.

All methods, with public visibility, are part of the public API. All other methods are not part of the public API. Where possible, we'll try to keep protected methods backwards-compatible in minor/patch versions, but if you're overriding methods then please test your work before upgrading.

Reporting Issues

Please create an issue for any bugs you've found, or features you're missing.