oppara / cakephp-plugin-unix-timestamp
UnixTimestamp behavior
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- cakephp/cakephp: ^3.4
Requires (Dev)
- cakephp/cakephp-codesniffer: ^3.0
- phpunit/phpunit: ^5.7|^6.0
This package is not auto-updated.
Last update: 2025-03-30 08:12:19 UTC
README
You can use this UnixTimestampBehavior insted of CakePHP's TimestampBehavior when want to save the unix timestamp
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require oppara/cakephp-plugin-unix-timestamp
Enable plugin
You need to enable the plugin your config/bootstrap.php file:
<?php Plugin::load('Oppara/UnixTimestamp');
If you are already using Plugin::loadAll();
, then this is not necessary.
Usage
more info https://book.cakephp.org/3.0/en/orm/behaviors/timestamp.html
CREATE TABLE users ( id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, username VARCHAR(255) NOT NULL, password VARCHAR(255) NOT NULL, created INT, modified INT );
<?php namespace App\Model\Table; use Cake\ORM\Table; class UsersTable extends Table { public function initialize(array $config) { $this->addBehavior('Oppara/UnixTimestamp.UnixTimestamp'); } }