Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created February 18, 2015 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muskie9/e961fb4a20bf41b87839 to your computer and use it in GitHub Desktop.
Save muskie9/e961fb4a20bf41b87839 to your computer and use it in GitHub Desktop.
<?php
class SampleDO extends DataObject {
public function canCreate($memeber = null){
return true;
}
public function canEdit($memeber = null){
return true;
}
public function canDelete($memeber = null){
return true;
}
public function canView($memeber = null){
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment