- fix: quick search error if the query term contained " or '

- optimized sql query in sync_users (called every time on admin page) - a lot faster when #user_cache_categories is big
- added function Template->delete_block_vars (opposite of assign_block_vars)

git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2094 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2007-09-19 03:06:16 +00:00
parent b34b7c6b28
commit bb07324f76
4 changed files with 45 additions and 8 deletions
+37
View File
@@ -295,6 +295,43 @@ class Template {
return true;
}
/**
* Block-level variable deletion. Deletes the last block iteration.
* if all is true - all blocks are removed
* return true if a deletion occured
*/
function delete_block_vars($blockname, $all=false)
{
$blocks = explode('.', $blockname);
$blockcount = count($blocks);
$str = '$this->_tpldata';
for ($i = 0; $i < $blockcount; $i++)
{
$str .= '[\'' . $blocks[$i] . '.\']';
eval('$lastiteration = isset('.$str.') ? sizeof('.$str.')-1:-1;');
if ($lastiteration==-1)
{
return false;
}
if ($i==$blockcount-1)
{
break;
}
$str .= '[' . $lastiteration . ']';
}
if ($all==true or $lastiteration==0)
{
$str ='unset('.$str.');';
}
else
{
$str ='unset('.$str.'['.$lastiteration.']);';
}
eval($str);
return true;
}
/**
* Root-level variable assignment. Adds to current assignments, overriding
* any existing variable assignment with the same name.