aboutsummaryrefslogtreecommitdiffstats
path: root/search.php
diff options
context:
space:
mode:
authorgweltas <gweltas@piwigo.org>2004-02-08 01:28:18 +0000
committergweltas <gweltas@piwigo.org>2004-02-08 01:28:18 +0000
commit135346f2fcf3321f7826873372c74ed92f6d924b (patch)
tree6def8fb4409b699c8086fe926eb4e200aedf4589 /search.php
parente712c4aef84d5ac73e55f904a8922064f63f90a3 (diff)
Template migration
git-svn-id: http://piwigo.org/svn/trunk@355 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'search.php')
-rw-r--r--search.php74
1 files changed, 21 insertions, 53 deletions
diff --git a/search.php b/search.php
index 41dcbe1fe..9153e9aac 100644
--- a/search.php
+++ b/search.php
@@ -68,69 +68,37 @@ if ( isset( $_POST['search'] ) )
$title= $lang['search_title'];
include('include/page_header.php');
-$handle = $vtp->Open( './template/'.$user['template'].'/search.vtp' );
+$template->set_filenames( array('search'=>'search.tpl') );
initialize_template();
-$tpl = array( 'search_title','search_return_main_page','submit',
- 'search_comments' );
-templatize_array( $tpl, 'lang', $handle );
-//----------------------------------------------------------------- form action
-$vtp->setGlobalVar( $handle, 'form_action', add_session_id( './search.php' ) );
+
+$template->assign_vars(array(
+ 'L_TITLE' => $lang['search_title'],
+ 'L_COMMENTS' => $lang['search_comments'],
+ 'L_RETURN' => $lang['search_return_main_page'],
+ 'L_SUBMIT' => $lang['submit'],
+ 'L_SEARCH'=>$lang['search_field_search'].' *',
+ 'L_SEARCH_OR'=>$lang['search_mode_or'],
+ 'L_SEARCH_AND'=>$lang['search_mode_and'],
+
+ 'F_ACTION' => add_session_id( 'search.php' ),
+ 'F_TEXT_VALUE' => isset($_POST['search'])?$_POST['search']:'',
+
+ 'U_HOME' => add_session_id( 'category.php' )
+ )
+);
+
//-------------------------------------------------------------- errors display
if ( sizeof( $error ) != 0 )
{
- $vtp->addSession( $handle, 'errors' );
+ $template->assign_block_vars('errors',array());
for ( $i = 0; $i < sizeof( $error ); $i++ )
{
- $vtp->addSession( $handle, 'li' );
- $vtp->setVar( $handle, 'li.li', $error[$i] );
- $vtp->closeSession( $handle, 'li' );
+ $template->assign_block_vars('errors.error',array('ERROR'=>$error[$i]));
}
- $vtp->closeSession( $handle, 'errors' );
-}
-//------------------------------------------------------------------------ form
-// search field
-$vtp->addSession( $handle, 'line' );
-$vtp->setVar( $handle, 'line.name', $lang['search_field_search'].' *' );
-$vtp->addSession( $handle, 'text' );
-$vtp->setVar( $handle, 'text.size', '40' );
-$vtp->setVar( $handle, 'text.name', 'search' );
-if (isset($_POST['search']))
-$vtp->setVar( $handle, 'text.value', $_POST['search'] );
-$vtp->closeSession( $handle, 'text' );
-$vtp->closeSession( $handle, 'line' );
-// mode of search : match all words or at least one of this words
-$vtp->addSession( $handle, 'line' );
-$vtp->addSession( $handle, 'group' );
-
-$vtp->addSession( $handle, 'radio' );
-$vtp->setVar( $handle, 'radio.name', 'mode' );
-$vtp->setVar( $handle, 'radio.value', 'OR' );
-$vtp->setVar( $handle, 'radio.option', $lang['search_mode_or'] );
-if (!isset($_POST['mode']) || $_POST['mode'] == 'OR' )
-{
- $vtp->setVar( $handle, 'radio.checked', ' checked="checked"' );
}
-$vtp->closeSession( $handle, 'radio' );
-
-$vtp->addSession( $handle, 'radio' );
-$vtp->setVar( $handle, 'radio.name', 'mode' );
-$vtp->setVar( $handle, 'radio.value', 'AND' );
-$vtp->setVar( $handle, 'radio.option', $lang['search_mode_and'] );
-if ( isset($_POST['mode']) && $_POST['mode'] == 'AND' )
-{
- $vtp->setVar( $handle, 'radio.checked', ' checked="checked"' );
-}
-$vtp->closeSession( $handle, 'radio' );
-
-$vtp->closeSession( $handle, 'group' );
-$vtp->closeSession( $handle, 'line' );
-//---------------------------------------------------- return to main page link
-$vtp->setGlobalVar( $handle, 'back_url', add_session_id( './category.php' ) );
-//----------------------------------------------------------- html code display
-$code = $vtp->Display( $handle, 0 );
-echo $code;
//------------------------------------------------------------ log informations
pwg_log( 'search', $title );
mysql_close();
+$template->pparse('search');
include('include/page_tail.php');
?> \ No newline at end of file