hi
i try to create new module , it is very simple: add references
so i create new folder /references width subfolders /code /css/ templates and _config.php file
in subfolder /code i have two files
References.php
ReferencesAdmin.php
class References extends DataObject {
public static $db = array(
'Name' => 'Varchar(255)',
'Content' => 'Text',
'Status' => 'Enum("New, Active, Disable","New")'
);
public static $summary_fields = array(
'Name',
'Content',
'Stauts'
);
}
class ReferencesAdmin extends ModelAdmin {
public static $menu_title = 'References';
public static $url_segment = 'references';
public static $managed_models = 'References';
public static $model_importers = array();
}
and it works fine
on left side menu i have small (default) search form
but how to set default action to list all references? thirst i have to search all references to get results but i want to get all references on start action