Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created October 19, 2016 14:44
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/bcb8a0509b51889b35fc2fcc36fdf176 to your computer and use it in GitHub Desktop.
Save muskie9/bcb8a0509b51889b35fc2fcc36fdf176 to your computer and use it in GitHub Desktop.
<?php
/**
* Class DealerAdmin
*/
class DealerAdmin extends ModelAdmin
{
/**
* @var array
*/
private static $managed_models = array(
'MyDealer' => array(
'title' => 'Dealers',
),
);
/**
* @var string
*/
private static $url_segment = 'my-dealers';
/**
* @var string
*/
private static $menu_title = 'Dealer Admin';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment