thuc / tami
There is no license information available for the latest version (6.10.53) of this package.
6.10.53
2018-09-25 17:00 UTC
Requires
- doctrine/doctrine-mongo-odm-module: dev-master
- doctrine/mongodb-odm-softdelete: dev-master
- google/apiclient: ^2.0
- dev-master
- 6.10.53
- 6.10.52
- 6.10.51
- 6.10.50
- 6.10.49
- 6.10.48
- 6.10.47
- 6.10.46
- 6.10.45
- 6.10.44
- 6.10.43
- 6.10.42
- 6.10.41
- 6.10.40
- 6.10.39
- 6.10.38
- 6.10.37
- 6.10.36
- 6.10.35
- 6.10.34
- 6.10.33
- 6.10.32
- 6.10.31
- 6.10.30
- 6.10.29
- 6.10.28
- 6.10.27
- 6.10.26
- 6.10.25
- 6.10.24
- 6.10.23
- 6.10.22
- 6.10.21
- 6.10.20
- 6.10.19
- 6.10.18
- 6.10.17
- 6.10.16
- 6.10.15
- 6.10.14
- 6.10.13
- 6.10.12
- 6.10.11
- 6.10.10
- 6.10.09
- 6.02.06
- 6.02.05
- 6.02.04
- 6.02.03
- 6.02.02
- 6.02.01
- 6.1.09
- 6.1.08
- 6.1.07
- 6.1.06
- 6.1.05
- 6.1.04
- 6.1.03
- 6.1.02
- 6.1.01
- 6.1.0
- 6.0.99
- 6.0.98
- 6.0.97
- 6.0.96
- 6.0.95
- 6.0.94
- 6.0.93
- 6.0.92
- 6.0.91
- 6.0.9
- 6.0.8
- 6.0.7
- 6.0.6
- 6.0.5
- 6.0.4
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.9
- 5.0.8
- 5.0.7
- 5.0.6
- 5.0.5
- 5.0.4
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.0.9
- 4.0.8
- 4.0.7
- 4.0.6
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.0.9
- 3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- v1.0.2
- dev-b6.10.11
This package is auto-updated.
Last update: 2025-03-27 00:26:12 UTC
README
Sao chép file src/Thuc/bin/thuc.local.php.dist
và đổi tên vào trong cấu hình trong config/autoload/thuc.local.php
của dự án
Thêm 'Thuc\Oauth' => 'thuc',
vào config/autoload/module.doctrine-mongo-odm.local.php
'odm_default' => array( 'drivers' => array( //.... 'Thuc\Oauth' => 'thuc', ) ), 'thuc' => array( 'class' => 'Doctrine\ODM\MongoDB\Mapping\Driver\AnnotationDriver', 'cache' => 'array', 'paths' => array( 'Thuc\Oauth' ) ),
thêm ENV vào onDispatch controller
function onDispatch(MvcEvent $e) { //enviroment $this->layout()->ENV = $this->ENV; }
add class Member to System\Model\Member
/**
*
* @ODM\ReferenceOne(targetDocument="\Thuc\Oauth\User", inversedBy="members")
*/
private $user;