本文整理汇总了PHP中Notifier::instance方法的典型用法代码示例。如果您正苦于以下问题:PHP Notifier::instance方法的具体用法?PHP Notifier::instance怎么用?PHP Notifier::instance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Notifier
的用法示例。
在下文中一共展示了Notifier::instance方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
protected function __construct($attrs = null)
{
if (!$this->no_backend) {
if (!$this->table) {
$this->table = strtolower(Inflector::get()->pluralize(get_class($this)));
}
$this->db = DB::instance();
}
if (!$this->no_cache) {
$this->cache = Cache::instance();
}
if (class_exists('\\Notifier')) {
$this->notifier = \Notifier::instance();
}
if (defined('AWS_CONSUMER_KEY') && defined('AWS_CONSUMER_SECRET') && defined('AWS_BUCKET')) {
if (!class_exists('\\Aws\\S3\\S3Client')) {
throw new Exception("AWS S3 packaged is required");
}
$this->s3 = \Aws\S3\S3Client::factory(array('key' => AWS_CONSUMER_KEY, 'secret' => AWS_CONSUMER_SECRET));
}
$this->validator = ValidatorBase::instance();
if ($attrs && is_numeric($attrs)) {
// assume $attrs is id
$this->findOne(array($this->primary_key => $attrs));
} else {
if ($attrs && is_array($attrs)) {
if (!array_key_exists($this->primary_key, $attrs)) {
$this->validate($attrs);
}
// set the attrs
$this->attrs = $attrs;
$this->protectAttrs();
}
}
}