Issue #2002458 by baldwinlouie: Rename Views method default_ignore() to defaultIgnore().

8.0.x
Alex Pott 2013-05-28 23:32:25 +01:00
parent 6295bdf7ba
commit f122f25668
1 changed files with 2 additions and 2 deletions

View File

@ -444,7 +444,7 @@ abstract class ArgumentPluginBase extends HandlerBase {
$defaults = array(
'ignore' => array(
'title' => t('Display all results for the specified field'),
'method' => 'default_ignore',
'method' => 'defaultIgnore',
'breadcrumb' => TRUE, // generate a breadcrumb to here
),
'default' => array(
@ -681,7 +681,7 @@ abstract class ArgumentPluginBase extends HandlerBase {
* If an argument was expected and was not given, in this case, simply
* ignore the argument entirely.
*/
function default_ignore() {
public function defaultIgnore() {
return TRUE;
}