Skip to content

Commit

Permalink
Improve UI when using with Fluent translations
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavol Tuka committed Apr 12, 2019
1 parent 263b9d8 commit 55efa9b
Show file tree
Hide file tree
Showing 24 changed files with 108 additions and 5,672 deletions.
17 changes: 0 additions & 17 deletions .editorconfig

This file was deleted.

6 changes: 0 additions & 6 deletions .eslintignore

This file was deleted.

1 change: 0 additions & 1 deletion .eslintrc.js

This file was deleted.

69 changes: 0 additions & 69 deletions .scrutinizer.yml

This file was deleted.

7 changes: 0 additions & 7 deletions .upgrade.yml

This file was deleted.

216 changes: 4 additions & 212 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,217 +1,9 @@
# SilverStripe Linkable

This module is no longer maintained. Please checkout the following excellent alternatives
* Require SilverStripe 4.x

* [gorriecoe/silverstripe-link](https://github.com/gorriecoe/silverstripe-link)
* [gorriecoe/silverstripe-linkfield](https://github.com/gorriecoe/silverstripe-linkfield)
* [silverstripe-embed](https://github.com/gorriecoe/silverstripe-embed)
## Installation with [Composer](https://getcomposer.org)

## Requirements

* SilverStripe 4.x
* [Display Logic](https://github.com/unclecheese/silverstripe-display-logic)

See 1.x branch/releases for SilverStripe 3.x support

## Maintainers

* shea@livesource.co.nz

## Description

This module contains a couple of handy FormFields / DataObjects for managing external and internal links on DataObjects, including oEmbed links.

## Installation with [Composer](https://getcomposer.org/)

```
composer require "sheadawson/silverstripe-linkable"
```

## Link / LinkField

A Link Object can be linked to a URL, Email, Phone number, an internal Page or File in the SilverStripe instance. A DataObject, such as a Page can have many Link objects managed with a grid field, or one Link managed with LinkField.

### Example usage

```php
class Page extends SiteTree
{
private static $has_one = [
'ExampleLink' => 'Link',
];

public function getCMSFields()
{
$fields = parent::getCMSFields();

$fields->addFieldToTab('Root.Link', LinkField::create('ExampleLinkID', 'Link to page or file'));

return $fields;
}
}
```

In your template, you can render the links anchor tag with

```html
$ExampleLink
```

### Adding custom class to link

The anchor tag can be rendered with a class or classes of your choosing by passing the class string to the `setCSSClass()` method within your template.

```html
$ExampleLink.setCSSClass(your-css-class)
```

### Customising link templates

Link tags are rendered with the Link.ss template. You can override this template by copying it into your theme or project folder and modifying as required.

You can also specify a custom template to render any Link with by calling the renderWith function and passing in the name of your custom template

```html
$ExampleLink.renderWith(Link_button)
```

Finally, you can optionally offer CMS users the ability to select from a list of templates, allowing them to choose how their Link should be rendered. To enable this feature, create your custom template files and register them in your site config.yml file as below.

```YAML
Sheadawson\Linkable\Models\Link:
templates:
button: Description of button template # looks for Link_button.ss template
iconbutton: Description of iconbutton template # looks for Link_iconbutton.ss template
```
### Limit allowed Link types
To limit link types for each field.
```php
LinkField::create('ExampleLinkID', 'Link Title')->setAllowedTypes(array('URL','Phone'))
```

You can also globally limit link types. To limit types define them in your site config.yml file as below.

```YAML
Sheadawson\Linkable\Models\Link:
allowed_types:
- URL
- SiteTree
```
The default types available are:
```YAML
URL: URL
Email: Email address
Phone: Phone number
File: File on this website
SiteTree: Page on this website
```
### Adding custom Link types
Sometimes you might have custom DataObject types that you would like CMS users to be able to create Links to. This can be achieved by adding a DataExtension to the Link DataObject, see the below example for making Product objects Linkable.
```php
class CustomLink extends DataExtension
{
private static $has_one = [
'Product' => 'Product',
];

private static $types = [
'Product' => 'A Product on this site',
];

public function updateCMSFields(FieldList $fields)
{
// update the Link Type dropdown to contain your custom Link types
$fields->dataFieldByName('Type')->setSource($this->owner->config()->types);

// Add a dropdown field containing your ProductList
$fields->addFieldToTab(
'Root.Main',
DropdownField::create('ProductID', 'Product', Product::get()->map('ID', 'Title')->toArray())
->setHasEmptyDefault(true)
->displayIf('Type')->isEqualTo('Product')->end()
);
}
```

In your config.yml

```YAML
Sheadawson\Linkable\Models\Link:
extensions:
- CustomLink
```
Please see the [wiki](https://github.com/sheadawson/silverstripe-linkable/wiki) for more customisation examples.
## EmbeddedObject/Field
Use the EmbeddedObject/Field to easily add oEmbed content to a DataObject or Page.
### Example usage
```php
class Page extends SiteTre
{
private static $has_one = [
'Video' => 'EmbeddedObject',
];

public function getCMSFields()
{
$fields = parent::getCMSFields();

$fields->addFieldToTab('Root.Video', EmbeddedObjectField::create('Video', 'Video from oEmbed URL', $this->Video()));

return $fields;
}
}
...
```

In your template, you can render the object with the name of the has_one relation

```html
$Video
```

You can also access other metadata on the object via

```html
<h1>$Video.Title</h1>
$Video.Description
$Video.ThumbURL
```

See EmbeddedObject.php for a list of properties saved available in $db.

## Custom query params

Sometimes you may want to add custom query params to the GET request which fetches the `LinkEditForm`.
This is very useful in a situation where you want to customise the form based on specific situation.
Custom query params are a way how to provide context for your `LinkEditForm`.

To add custom params you need to add `data-extra-query`.

```
$linkField->setAttribute('data-extra-query', '&param1=value1');
```

You can then use the `updateLinkForm` extension point and extract the param value with following code:

```
$param1 = Controller::curr()->getRequest()->requestVar('param1');
```

## Development

Front end uses pre-processing and requires the use of `Yarn`.
composer require "bratiask/silverstripe-linkable"
```
1 change: 0 additions & 1 deletion _config.php

This file was deleted.

12 changes: 6 additions & 6 deletions _config/linkable.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
Name: linkable
Only:
moduleexists: 'silverstripe/cms'
moduleexists: silverstripe/cms
---
Sheadawson\Linkable\Models\Link:
extensions:
- Sheadawson\Linkable\Extensions\LinkableSiteTreeExtension
Bratiask\Linkable\Models\Link:
extensions:
- Bratiask\Linkable\Extensions\LinkableSiteTreeExtension

Page:
extensions:
- Sheadawson\Linkable\Extensions\LinkableDataExtension
extensions:
- Bratiask\Linkable\Extensions\LinkableDataExtension
17 changes: 9 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "sheadawson/silverstripe-linkable",
"name": "bratiask/silverstripe-linkable",
"type": "silverstripe-vendormodule",
"description": "A couple of handy form fields and objects for managing external and internal links on DataObjects",
"license": "BSD-3-Clause",
Expand All @@ -8,7 +8,7 @@
"cms",
"link"
],
"homepage": "http://github.com/sheadawson/silverstripe-linkable",
"homepage": "http://github.com/bratiask/silverstripe-linkable",
"authors": [
{
"name": "Shea Dawson",
Expand All @@ -17,24 +17,25 @@
{
"name": "Marcus Nyeholt",
"email": "marcus@silverstripe.com.au"
},
{
"name": "Filip Likavcan",
"email": "filip@bratia.sk"
}
],
"support": {
"issues": "http://github.com/sheadawson/silverstripe-linkable/issues"
"issues": "http://github.com/bratiask/silverstripe-linkable/issues"
},
"require": {
"silverstripe/vendor-plugin": "^1.0",
"silverstripe/framework": "^4.0",
"unclecheese/display-logic": "*",
"embed/embed": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"Sheadawson\\Linkable\\": "src/",
"Sheadawson\\Linkable\\Tests\\": "tests/"
"Bratiask\\Linkable\\": "src/",
"Bratiask\\Linkable\\Tests\\": "tests/"
}
},
"suggest": {
Expand Down
Loading

0 comments on commit 55efa9b

Please sign in to comment.