public function DateObject::removeGranularity in Date 7
Same name and namespace in other branches
- 7.3 date_api/date_api.module \DateObject::removeGranularity()
- 7.2 date_api/date_api.module \DateObject::removeGranularity()
Removes a granularity entry from the array.
File
- date_api/
date_api.module, line 252 - This module will make the date API available to other modules. Designed to provide a light but flexible assortment of functions and constants, with more functionality in additional files that are not loaded unless other modules specifically include them.
Class
- DateObject
- Extend PHP DateTime class with granularity handling, merge functionality and slightly more flexible initialization parameters.
Code
public function removeGranularity($g) {
if ($key = array_search($g, $this->granularity)) {
unset($this->granularity[$key]);
}
}