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:
<?php
/**
* MvcCore
*
* This source file is subject to the BSD 3 License
* For the full copyright and license information, please view
* the LICENSE.md file that are distributed with this source code.
*
* @copyright Copyright (c) 2016 Tom Flidr (https://github.com/mvccore)
* @license https://mvccore.github.io/docs/mvccore/5.0.0/LICENCE.md
*/
namespace MvcCore\Ext\Models\Db\Model;
trait Props {
/**
* Model metadata cache class to cache parsed metadata.
* Class has to implement `\MvcCore\Ext\ICache` or class
* has to implement static method `GetStore()` and instance
* methods `Load()` and `Save()`.
* @var string
*/
protected static $metaDataCacheClass = '\\MvcCore\\Ext\\Cache';
/**
* Model metadata base cache key.
* @var string
*/
protected static $metaDataCacheKeyBase = 'model.meta';
/**
* Model metadata cache tags.
* @var \string[]
*/
protected static $metaDataCacheTags = ['modelmeta'];
/**
* Default properties flags for data and manipulation methods:
* - data methods: `GetValues()`, `SetValues()`, `GetTouched()`
* - maniulation methods: `Save()`, `IsNew()`, `Insert()`, `Update()`, `Delete()`
* @var int
*/
protected static $defaultPropsFlags = (
\MvcCore\IModel::PROPS_INHERIT |
\MvcCore\IModel::PROPS_PROTECTED
);
}