Lines Matching +full:ini +full:- +full:values
5 * $Id: action.php 111 2008-12-25 19:33:15Z wingedfox $
8 * @lastmodified $Date: 2008-12-25 22:33:15 +0300 (Чтв, 25 Дек 2008) $
12 * @copyright (c) 2005-2007, Ilya Lebedev
22 * @date 02-Sep-2005 12:04
23 * @see http://php.net/manual/ru/function.array-combine.php#56424
25 * @param array $vals array with values
65 …,'Live Bookmarks' => 'https://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&title=%…
81 …,'Mister Wong' => 'http://www.mister-wong.de/index.php?action=addurl&bm_url=%permalink%&bm…
97 var $BOOKMARKME_SHOW_ON = 1; // equals to bottom, pre-0.7 compatible
111 …,'date' => preg_replace("#.*?(\d{4}-\d{2}-\d{2}).*#","\\1",'$Date: 2008-12-25 22:33:15 +0300 (Чт…
121 …$controller->register_hook('TPL_ACT_RENDER','AFTER',$this,'bookmark',array("show" => $this->BOOKMA…
122 …$controller->register_hook('TPL_ACT_RENDER','BEFORE',$this,'bookmark',array("show" => $this->BOOKM…
133 if ($event->data != 'show') return; // nothing to do for us
136 $show = $this->getConf('show_bookmarks');
143 $bm = (int)$this->$bm;
148 if ( !($show & $this->BOOKMARKME_SHOW_BOTTOM & $param['show'])
149 && !($show & $this->BOOKMARKME_SHOW_TOP & $param['show']))
162 $sp = join("|",explode(",",preg_quote($this->getConf('skip_ids'))));
168 if (@file_exists(dirname(__FILE__)."/bookmark.ini")) {
169 $bkm = (preg_split("/(\s|[\r\n])+/",@file_get_contents(dirname(__FILE__)."/bookmark.ini")));
172 $this->bookmarks = array_merge(array_filter(array_combine($bkk,$bkv)),$this->bookmarks);
175 $be = explode(",",$this->getConf('bookmarks'));
189 …if ($this->getConf('show_header')) $html[] = '<li class="head">'.$this->getLang('bookmark').'</li>…
191 $book_lng = htmlspecialchars($this->getLang('bookmark_title'));
193 // ksort($this->bookmarks);
194 foreach ($this->bookmarks as $k=>$v) {