Skip to content

Instantly share code, notes, and snippets.

@DevJMD
Created November 30, 2015 18:05
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 DevJMD/4630a9a83e0fd82ec4c6 to your computer and use it in GitHub Desktop.
Save DevJMD/4630a9a83e0fd82ec4c6 to your computer and use it in GitHub Desktop.
<?php
class PersonAdmin extends ModelAdmin {
private static $managed_models = array(
'Person'
);
private static $menu_title = 'Persons';
private static $url_segment = 'persons';
public function getCMSFields() {
$fields = parent::getCMSFields();
return $fields;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment