Skip to content

Instantly share code, notes, and snippets.

@hailwood
Last active August 29, 2015 14:16
Show Gist options
  • Save hailwood/d3bc4085061faf7f3e0f to your computer and use it in GitHub Desktop.
Save hailwood/d3bc4085061faf7f3e0f to your computer and use it in GitHub Desktop.
<?php
//not ideal but it works
class TeamMember extends DataObject {
private static $belongs_many_many = [
'OurPeoplePages' => 'OurPeoplePage',
'ContactUsPages' => 'ContactUsPage'
];
}
class OurPeoplePage extends Page {
private static $many_many = [
'Team' => 'TeamMember'
];
}
class ContactUsPage extends Page {
private static $many_many = [
'Team' => 'TeamMember'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment