public function isTomorrow() { return $this->mysqlDate() == Date::fromUnixTime(strtotime('today +1 day'))->mysqlDate(); }
protected function onNodeChange($id_node, $node, $old_node) { $this->O->event()->trigger($this->namespace . '.node.change'); $uid = $this->O->auth()->uid(); $label = Filter::text('node.revision.label', $node, 'revision'); $comment = Filter::text('node.revision.comment', $node); $this->addRevision($id_node, $uid, $label, $comment, Date::fromStrtotime(time())->mysqlDateTime(), $old_node); }
/** * @covers Fp\Core\Date::format * @todo Implement testFormat(). */ public function testFormat() { $this->assertEquals('25/12/1998 01:00', \Fp\Core\Date::fromUnixTime(914544000)->format('d/m/Y h:i')); }