-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #193 from creative-commoners/pulls/1/elemental-multi
NEW Add ElementalAreasPageExtension
- Loading branch information
Showing
3 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace SilverStripe\FrameworkTest\Elemental\Extension; | ||
|
||
use DNADesign\Elemental\Extensions\ElementalAreasExtension; | ||
use DNADesign\Elemental\Models\ElementalArea; | ||
|
||
/** | ||
* This is used to test multiple elemental areas on a page | ||
*/ | ||
class MultiElementalAreasExtension extends ElementalAreasExtension | ||
{ | ||
private static $has_one = [ | ||
'ElementalArea1' => ElementalArea::class, | ||
'ElementalArea2' => ElementalArea::class | ||
]; | ||
|
||
private static $owns = [ | ||
'ElementalArea1', | ||
'ElementalArea2' | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace SilverStripe\FrameworkTest\Elemental\Admin; | ||
|
||
use SilverStripe\Admin\ModelAdmin; | ||
use SilverStripe\FrameworkTest\Elemental\Model\MultiElementalBehatTestObject; | ||
|
||
class MutliElementalBehatTestAdmin extends ModelAdmin | ||
{ | ||
private static $url_segment = 'multi-elemental-behat-test-admin'; | ||
|
||
private static $menu_title = 'Multi-elemental Behat Test Admin'; | ||
|
||
private static $menu_icon_class = 'font-icon-block-banner'; | ||
|
||
private static $managed_models = [ | ||
MultiElementalBehatTestObject::class, | ||
]; | ||
|
||
private static $required_permission_codes = 'CMS_ACCESS_CMSMain'; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
namespace SilverStripe\FrameworkTest\Elemental\Model; | ||
|
||
use SilverStripe\ORM\DataObject; | ||
use SilverStripe\FrameworkTest\Elemental\Extension\MultiElementalAreasExtension; | ||
|
||
class MultiElementalBehatTestObject extends DataObject | ||
{ | ||
private static $db = [ | ||
'Title' => 'Varchar', | ||
]; | ||
|
||
private static $table_name = 'ElementalMultiBehatTestObject'; | ||
|
||
private static $extensions = [ | ||
MultiElementalAreasExtension::class, | ||
]; | ||
|
||
public function canView($member = null) | ||
{ | ||
return true; | ||
} | ||
|
||
public function canEdit($member = null) | ||
{ | ||
return true; | ||
} | ||
|
||
public function canDelete($member = null) | ||
{ | ||
return true; | ||
} | ||
|
||
public function canCreate($member = null, $context = []) | ||
{ | ||
return true; | ||
} | ||
} |