public function DatexObject::setTime in Datex 7
Same as DateTime::setTime().
File
- datex_api/
datex_api_classes.inc, line 790 - API and helper functions used by other datex modules.
Class
- DatexObject
- This class is Jalali equivilant of php DateTime. It also has some functionallity from object defiend in Drupal's date module DateObject.
Code
public function setTime($hour, $minute, $second = 0) {
$this->dateobj
->setTime($hour, $minute, $second);
return $this;
}