ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilWebDAVCommonINodeFunctionsTrait.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21trait ilWebDAVCommonINodeFunctionsTrait
22{
23 protected function retrieveLastModifiedAsIntFromObjectLastUpdateString(string $last_update): ?int
24 {
25 $last_update_int = strtotime($last_update);
26 if ($last_update_int !== false) {
27 return $last_update_int;
28 }
29
30 return null;
31 }
32}