

namibia
bb2698c383a0585633180c7996aba816667c9e6d
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
<?php namespace DoctrineProxies\__CG__\User\Entity; /** * DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR */ class Permissions extends \User\Entity\Permissions implements \Doctrine\ORM\Proxy\Proxy { /** * @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with * three parameters, being respectively the proxy object to be initialized, the method that triggered the * initialization process and an array of ordered parameters that were passed to that method. * * @see \Doctrine\Common\Persistence\Proxy::__setInitializer */ public $__initializer__; /** * @var \Closure the callback responsible of loading properties that need to be copied in the cloned object * * @see \Doctrine\Common\Persistence\Proxy::__setCloner */ public $__cloner__; /** * @var boolean flag indicating if this object was already initialized * * @see \Doctrine\Common\Persistence\Proxy::__isInitialized */ public $__isInitialized__ = false; /** * @var array properties to be lazy loaded, with keys being the property * names and values being their default values * * @see \Doctrine\Common\Persistence\Proxy::__getLazyProperties */ public static $lazyPropertiesDefaults = array(); /** * @param \Closure $initializer * @param \Closure $cloner */ public function __construct($initializer = null, $cloner = null) { $this->__initializer__ = $initializer; $this->__cloner__ = $cloner; } /** * {@inheritDoc} * @param string $name */ public function __get($name) { $this->__initializer__ && $this->__initializer__->__invoke($this, '__get', array($name)); return parent::__get($name); } /** * {@inheritDoc} * @param string $name * @param mixed $value */ public function __set($name, $value) { $this->__initializer__ && $this->__initializer__->__invoke($this, '__set', array($name, $value)); return parent::__set($name, $value); } /** * * @return array */ public function __sleep() { if ($this->__isInitialized__) { return array('__isInitialized__', 'id', 'accessAdminModule', 'accessPortalModule', 'name', 'settingsPage', 'settingsUser', 'settingsClub', 'settingsMembership', 'settingsRetail', 'settingsReport', 'settingsHpiReport', 'settingsGridExport', 'settingsDealership', 'settingsPersonal', 'settingsResetPin', 'valuationPage', 'valuationView', 'valuationArchive', 'valuationUnarchive', 'valuationCreateNew', 'valuationCreateSales', 'valuationCreatePending', 'valuationCreatePriceguide', 'valuationCreateComplete', 'valuationCreateStock', 'valuationUpdate', 'valuationRoutePending', 'valuationRouteComplete', 'valuationRouteStock', 'valuationRoutePriceguide', 'valuationIsSales', 'valuationIsValuator', 'valuationPrint', 'valuationB4cReport', 'valuationBmw', 'valuationRouteDealDone', 'valuationRouteDealNotDone', 'valuationGridExport', 'valuationUpdateDamages', 'valuationUpdateCoverReceived', 'valuationUploadPhotos', 'valuationPricingDetails', 'valuationCalendar', 'pgPage', 'pgB4cReport', 'pgView', 'pgMakeOffer', 'pgUpdateOffer', 'pgPrint', 'pgGridExport', 'pgArchive', 'pgUnArchive', 'auctionPage', 'auctionGridExport', 'auctionBid', 'tcPage', 'tcGridExport', 'stockPage', 'stockCreate', 'stockView', 'stockRouteAuction', 'stockRouteRetail', 'stockReclaimRetail', 'stockRoutePriceguide', 'stockRouteValuation', 'stockPrint', 'stockArchive', 'stockUnarchive', 'stockUpdate', 'stockGridExport', 'stockAuctionReportGridExport', 'stockBulkImportDrive', 'stockBulkImportPinnacle', 'stockUpdateDamages', 'stockUpdateCoverReceived', 'stockUploadPhotos', 'appCreateValuation', 'appCompleteValuation', 'adminPage', 'adminRegistration', 'adminReport', 'adminDealer', 'adminCommunication', 'adminSettings', 'adminUser', 'adminAuction', 'historicalPage', 'suAccess', 'suGroupFull', 'suDivisionFull', 'suCompanyFull', 'etpGemDmd'); } return array('__isInitialized__', 'id', 'accessAdminModule', 'accessPortalModule', 'name', 'settingsPage', 'settingsUser', 'settingsClub', 'settingsMembership', 'settingsRetail', 'settingsReport', 'settingsHpiReport', 'settingsGridExport', 'settingsDealership', 'settingsPersonal', 'settingsResetPin', 'valuationPage', 'valuationView', 'valuationArchive', 'valuationUnarchive', 'valuationCreateNew', 'valuationCreateSales', 'valuationCreatePending', 'valuationCreatePriceguide', 'valuationCreateComplete', 'valuationCreateStock', 'valuationUpdate', 'valuationRoutePending', 'valuationRouteComplete', 'valuationRouteStock', 'valuationRoutePriceguide', 'valuationIsSales', 'valuationIsValuator', 'valuationPrint', 'valuationB4cReport', 'valuationBmw', 'valuationRouteDealDone', 'valuationRouteDealNotDone', 'valuationGridExport', 'valuationUpdateDamages', 'valuationUpdateCoverReceived', 'valuationUploadPhotos', 'valuationPricingDetails', 'valuationCalendar', 'pgPage', 'pgB4cReport', 'pgView', 'pgMakeOffer', 'pgUpdateOffer', 'pgPrint', 'pgGridExport', 'pgArchive', 'pgUnArchive', 'auctionPage', 'auctionGridExport', 'auctionBid', 'tcPage', 'tcGridExport', 'stockPage', 'stockCreate', 'stockView', 'stockRouteAuction', 'stockRouteRetail', 'stockReclaimRetail', 'stockRoutePriceguide', 'stockRouteValuation', 'stockPrint', 'stockArchive', 'stockUnarchive', 'stockUpdate', 'stockGridExport', 'stockAuctionReportGridExport', 'stockBulkImportDrive', 'stockBulkImportPinnacle', 'stockUpdateDamages', 'stockUpdateCoverReceived', 'stockUploadPhotos', 'appCreateValuation', 'appCompleteValuation', 'adminPage', 'adminRegistration', 'adminReport', 'adminDealer', 'adminCommunication', 'adminSettings', 'adminUser', 'adminAuction', 'historicalPage', 'suAccess', 'suGroupFull', 'suDivisionFull', 'suCompanyFull', 'etpGemDmd'); } /** * */ public function __wakeup() { if ( ! $this->__isInitialized__) { $this->__initializer__ = function (Permissions $proxy) { $proxy->__setInitializer(null); $proxy->__setCloner(null); $existingProperties = get_object_vars($proxy); foreach ($proxy->__getLazyProperties() as $property => $defaultValue) { if ( ! array_key_exists($property, $existingProperties)) { $proxy->$property = $defaultValue; } } }; } } /** * */ public function __clone() { $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array()); } /** * Forces initialization of the proxy */ public function __load() { $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array()); } /** * {@inheritDoc} * @internal generated method: use only when explicitly handling proxy specific loading logic */ public function __isInitialized() { return $this->__isInitialized__; } /** * {@inheritDoc} * @internal generated method: use only when explicitly handling proxy specific loading logic */ public function __setInitialized($initialized) { $this->__isInitialized__ = $initialized; } /** * {@inheritDoc} * @internal generated method: use only when explicitly handling proxy specific loading logic */ public function __setInitializer(\Closure $initializer = null) { $this->__initializer__ = $initializer; } /** * {@inheritDoc} * @internal generated method: use only when explicitly handling proxy specific loading logic */ public function __getInitializer() { return $this->__initializer__; } /** * {@inheritDoc} * @internal generated method: use only when explicitly handling proxy specific loading logic */ public function __setCloner(\Closure $cloner = null) { $this->__cloner__ = $cloner; } /** * {@inheritDoc} * @internal generated method: use only when explicitly handling proxy specific cloning logic */ public function __getCloner() { return $this->__cloner__; } /** * {@inheritDoc} * @internal generated method: use only when explicitly handling proxy specific loading logic * @static */ public function __getLazyProperties() { return self::$lazyPropertiesDefaults; } /** * {@inheritDoc} */ public function toArray(array $expand = array ( )) { $this->__initializer__ && $this->__initializer__->__invoke($this, 'toArray', array($expand)); return parent::toArray($expand); } /** * {@inheritDoc} */ public function fromArray(array $data) { $this->__initializer__ && $this->__initializer__->__invoke($this, 'fromArray', array($data)); return parent::fromArray($data); } } |
Commits for namibiadata/DoctrineORMModule/Proxy/__CG__UserEntityPermissions.php
Revision | Author | Commited | Message |
---|---|---|---|
bb2698 ...
![]() |
Mark | Mon 24 Oct, 2016 08:44:08 +0000 | latest update |
df0489 ... | Mark | Fri 14 Oct, 2016 10:01:00 +0000 | initial commit |