Skip to content

Commit

Permalink
Merge pull request #4 from heyday/cam/ss4-upgrade
Browse files Browse the repository at this point in the history
SS4 Upgrade
  • Loading branch information
camspiers authored Mar 10, 2020
2 parents 78fd650 + 1bbd199 commit 774ec98
Show file tree
Hide file tree
Showing 6 changed files with 89 additions and 16 deletions.
19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
The MIT License (MIT)
Copyright © 2020 Wunderman Thompson New Zealand

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
the Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:

The above copyright notice and this permission notice shall be included in all copies
or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SilverStripe Facebook Image

This version supports SilverStripe 3, see the 0.0 branch for a SilverStripe 2.4 compatible version.
This version supports SilverStripe 4, see the 0.1 release for a SilverStripe 3 compatible version and the 0.0 release for a SilverStripe 2.4 compatible version.

Provides an Image Field for use when sharing pages on facebook.

Expand Down
6 changes: 3 additions & 3 deletions _config/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SiteConfig:
SilverStripe\SiteConfig\SiteConfig:
extensions:
- SiteConfigFacebookImageExtension
- WT\FacebookImage\SiteConfigFacebookImageExtension

Page:
extensions:
- PageFacebookImageExtension
- WT\FacebookImage\PageFacebookImageExtension
40 changes: 34 additions & 6 deletions code/PageFacebookImageExtension.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
<?php

namespace WT\FacebookImage;

use SilverStripe\AssetAdmin\Forms\UploadField;
use SilverStripe\Assets\Image;
use SilverStripe\Control\Controller;
use SilverStripe\Forms\FieldList;
use SilverStripe\ORM\DataExtension;
use SilverStripe\SiteConfig\SiteConfig;

class PageFacebookImageExtension extends DataExtension
{
private static $has_one = array(
'FacebookImage' => 'Image'
);
/**
* @var array
*/
private static $has_one = [
'FacebookImage' => Image::class,
];

/**
* @var array
*/
private static $owns = [
'FacebookImage',
];

/**
* @param FieldList $fields
*/
public function updateCMSFields(FieldList $fields)
{
$fields->addFieldToTab('Root.Facebook', $uf = new UploadField('FacebookImage', 'Facebook image for facebook share'));
$fields->addFieldToTab(
'Root.Facebook',
$uf = new UploadField('FacebookImage', 'Facebook image for facebook share')
);

$uf->setFolderName('FacebookImages/');
}

Expand All @@ -17,7 +43,9 @@ public function updateCMSFields(FieldList $fields)
*/
public function FacebookImageWithFallback()
{
return $this->owner->FacebookImageID ? $this->owner->FacebookImage() : SiteConfig::current_site_config()->FacebookImage();
return $this->owner->FacebookImageID
? $this->owner->FacebookImage()
: SiteConfig::current_site_config()->FacebookImage();
}

/**
Expand All @@ -27,4 +55,4 @@ public function FacebookMetaTags()
{
return Controller::curr()->renderWith('FacebookMetaTags');
}
}
}
34 changes: 29 additions & 5 deletions code/SiteConfigFacebookImageExtension.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,39 @@
<?php

namespace WT\FacebookImage;

use SilverStripe\AssetAdmin\Forms\UploadField;
use SilverStripe\Assets\Image;
use SilverStripe\Forms\FieldList;
use SilverStripe\ORM\DataExtension;

class SiteConfigFacebookImageExtension extends DataExtension
{
private static $has_one = array(
'FacebookImage' => 'Image'
);
/**
* @var array
*/
private static $has_one = [
'FacebookImage' => Image::class,
];

/**
* @var array
*/
private static $owns = [
'FacebookImage',
];

/**
* @param FieldList $fields
*/
public function updateCMSFields(FieldList $fields)
{
$fields->addFieldToTab('Root.Facebook', $uf = new UploadField('FacebookImage', 'Default Facebook image for facebook share'));
$fields->addFieldToTab(
'Root.Facebook',
$uf = new UploadField('FacebookImage', 'Default Facebook image for facebook share'),
);

$uf->setFolderName('FacebookImages/');
}

}
}
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
"name": "heyday/silverstripe-facebookimage",
"type": "silverstripe-module",
"description": "Provides an Image Field for use when sharing pages on facebook",
"type": "silverstripe-vendormodule",
"authors": [
{
"name": "Glenn Bautista",
"email": "[email protected]"
}
],
"require": {
"composer/installers": "~1.0"
"composer/installers": "~1.0",
"silverstripe/framework": "^4.0.0"
}
}

0 comments on commit 774ec98

Please sign in to comment.