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
@ -104,6 +104,13 @@ abstract class SearchFilter extends Object {
|
|||||||
public function getName() {
|
public function getName() {
|
||||||
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,
|
||||||
@ -114,6 +121,13 @@ abstract class SearchFilter extends Object {
|
|||||||
public function getFullName() {
|
public function getFullName() {
|
||||||
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