mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR SearchFilter->setName()/setFullName()
This commit is contained in:
parent
9a381d8393
commit
c7a301521d
@ -105,6 +105,13 @@ abstract class SearchFilter extends Object {
|
|||||||
return $this->name;
|
return $this->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param String
|
||||||
|
*/
|
||||||
|
public function setName($name) {
|
||||||
|
$this->name = $name;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The full name passed to the constructor,
|
* The full name passed to the constructor,
|
||||||
* including any (optional) relations in dot notation.
|
* including any (optional) relations in dot notation.
|
||||||
@ -115,6 +122,13 @@ abstract class SearchFilter extends Object {
|
|||||||
return $this->fullName;
|
return $this->fullName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param String
|
||||||
|
*/
|
||||||
|
public function setFullName($name) {
|
||||||
|
$this->fullName = $name;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Normalizes the field name to table mapping.
|
* Normalizes the field name to table mapping.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user