Skip to content

Commit

Permalink
feature 1505: improvement, when there is no photo yet in the gallery,…
Browse files Browse the repository at this point in the history
… first

shows a connection box (and only this), then if the user is an admin shows the
"Hello %s, your gallery is empty...".

I've also added the ability to deactivate this message. Only an admin can
deactivate it.

git-svn-id: http://piwigo.org/svn/trunk@5240 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed Mar 22, 2010
1 parent fdb92b1 commit fbfe113
Show file tree
Hide file tree
Showing 2 changed files with 87 additions and 7 deletions.
41 changes: 36 additions & 5 deletions include/common.inc.php
Expand Up @@ -180,14 +180,45 @@ function sanitize_mysql_kv(&$v, $k)
if (0 == $nb_photos)
{
$template->set_filenames(array('no_photo_yet'=>'no_photo_yet.tpl'));

$url = $conf['no_photo_yet_url'];
if (substr($url, 0, 4) != 'http')

if (is_admin())
{
if (isset($_GET['no_photo_yet']))
{
conf_update_param('no_photo_yet', 'false');
redirect(make_index_url());
exit();
}

$url = $conf['no_photo_yet_url'];
if (substr($url, 0, 4) != 'http')
{
$url = get_root_url().$url;
}

$template->assign(
array(
'step' => 2,
'intro' => sprintf(
l10n('Hello %s, your Piwigo photo gallery is empty!'),
$user['username']
),
'next_step_url' => $url,
'deactivate_url' => get_root_url().'?no_photo_yet=deactivate',
)
);
}
else
{
$url = get_root_url().$url;

$template->assign(
array(
'step' => 1,
'U_LOGIN' => 'identification.php',
)
);
}

$template->assign(array('next_step_url' => $url));
$template->pparse('no_photo_yet');
exit();
}
Expand Down
53 changes: 51 additions & 2 deletions themes/default/template/no_photo_yet.tpl
Expand Up @@ -2,6 +2,7 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="themes/Sylvia/theme.css">
<title>Piwigo, {'Welcome'|@translate}</title>
{literal}
<style type="text/css">
Expand All @@ -11,6 +12,9 @@ padding: 0;
background-color:#111;
}

P {text-align:center;}
TD {color:#888;}

#global {
position:absolute;
left: 50%;
Expand All @@ -28,7 +32,7 @@ border:2px solid #FF3363;
#noPhotoWelcome {font-size:25px; color:#888;text-align:center; letter-spacing:1px; margin-top:30px;}
.bigButton {}

.bigButton {text-align:center; margin-top:130px;}
.bigButton {text-align:center; margin-top:120px;}

.bigButton a {
background-color:#333;
Expand All @@ -47,6 +51,26 @@ border:2px solid #FF3363;
background-color:#444;
outline:none;
color:#ff3333;
border:none;
}

#connectionBox {
margin:0 auto;
margin-top:70px;
}

#deactivate {
position:absolute;
bottom:10px;
text-align:center;
width:100%;
font-style:normal;
}

#deactivate A {
text-decoration:none;
border:none;
}
</style>
{/literal}
Expand All @@ -55,8 +79,33 @@ border:2px solid #FF3363;

<body>
<div id="global">

{if $step == 1}
<p id="noPhotoWelcome">{'Welcome to your Piwigo photo gallery!'|@translate}</p>
<div class="bigButton"><a href="{$next_step_url}">{'Add Photos'|@translate}</a></div>

<form method="post" action="{$U_LOGIN}" id="quickconnect">
<table id="connectionBox">
<tr>
<td>{'Username'|@translate}</td>
<td><input type="text" name="username"></td>
</tr>
<tr>
<td>{'Password'|@translate}</td>
<td><input type="text" name="password"></td>
</tr>
</table>

<p><input class="submit" type="submit" name="login" value="{'Login'|@translate}"></p>
</form>


{else}
<p id="noPhotoWelcome">{$intro}</p>
<div class="bigButton"><a href="{$next_step_url}">{'I want to add photos'|@translate}</a></div>
<div id="deactivate"><a href="{$deactivate_url}">{'I will find my way by myself, please deactivate this message'|@translate}</a></div>
{/if}


</div>
</body>

Expand Down

0 comments on commit fbfe113

Please sign in to comment.