| 16 |
$this->name = !empty($options['name']) ? $options['name'] : NULL; |
$this->name = !empty($options['name']) ? $options['name'] : NULL; |
| 17 |
$this->handler = !empty($options['adapter']) ? $options['adapter'] : 'gdbm'; |
$this->handler = !empty($options['adapter']) ? $options['adapter'] : 'gdbm'; |
| 18 |
$this->path = !empty($options['location']) ? $options['location'] : bitcache_tmpname() . '.' . $this->handler; |
$this->path = !empty($options['location']) ? $options['location'] : bitcache_tmpname() . '.' . $this->handler; |
| 19 |
|
$this->path = bitcache_token_replace($this->path); |
| 20 |
$this->options = $options; |
$this->options = $options; |
| 21 |
$this->create(); |
$this->create(); |
| 22 |
} |
} |