芝麻web文件管理V1.00
编辑当前文件:/var/www/cognitio.in/wp-content/plugins/smart-slider-3/Nextend/Framework/Style/StyleStorage.php
sets, &$this->styles )); for ($i = 0; $i < count($this->styles); $i++) { if (!isset($this->stylesBySet[$this->styles[$i]['referencekey']])) { $this->stylesBySet[$this->styles[$i]['referencekey']] = array(); } $this->stylesBySet[$this->styles[$i]['referencekey']][] = &$this->styles[$i]; $this->stylesById[$this->styles[$i]['id']] = &$this->styles[$i]; } $loaded = true; } } public function styleSet($referenceKey, &$sets) { $this->load(); for ($i = count($this->sets) - 1; $i >= 0; $i--) { $this->sets[$i]['isSystem'] = 1; $this->sets[$i]['editable'] = 0; array_unshift($sets, $this->sets[$i]); } } public function styles($referenceKey, &$styles) { $this->load(); if (isset($this->stylesBySet[$referenceKey])) { $_styles = &$this->stylesBySet[$referenceKey]; for ($i = count($_styles) - 1; $i >= 0; $i--) { $_styles[$i]['isSystem'] = 1; $_styles[$i]['editable'] = 0; array_unshift($styles, $_styles[$i]); } } } public function style($id, &$style) { $this->load(); if (isset($this->stylesById[$id])) { $this->stylesById[$id]['isSystem'] = 1; $this->stylesById[$id]['editable'] = 0; $style = $this->stylesById[$id]; } } }