user-profile.tpl.php
am 23.12.2010 - 16:19 Uhr in
Hallo,
ich habe mir mal das Tutorial von Drupal.org zum Thema die Profilseite zu themen. Link http://drupal.org/node/35728...
Nun bekomme ich auf einmal einen Fehler obwohl der Code vorher funktioniert hat und ich da nichts dran geändert habe. Hier der Code. Und die Meldung.
Parse error: syntax error, unexpected $end in /home/bonipoco/public_html/profiles/uberdrupal/themes/acquia_prosper/user-profile.tpl.php on line 50
<div class="pers"><h3>Persönliches</h3></div>
<div class="bday"><br /><?php
$year_diff = date("Y") - ($account->profile_birth['year']);
$month_diff = date("m") - ($account->profile_birth['month']);
$day_diff = date("d") - ($account->profile_birth['day']);
if ($month_diff < 0)
$year_diff--;
elseif ($month_diff == 0 && $day_diff < 0)
$year_diff--;
print '<b>Alter:</b> ' . $year_diff . ' Jahre';
?></div>
<div class="relationship"><br /><b>Beziehungsstatus:</b> <?php $pfieldname = "profile_relationship"; ?>
<?php if(($account->$pfieldname) == ""): ?>
<?php print t('<span style="color:red">k.A.</span>'); ?>
<?php else : ?>
<?php print $account->$pfieldname ; ?><?php print check_plain($account->profile_relationship) ?></div>
<div class="url"><br /><b>Webseite:</b> <?php $pfieldname = "profile_url"; ?>
<?php if(($account->$pfieldname) == ""): ?>
<?php print t('<span style="color:red">k.A.</span>'); ?>
<?php else : ?>
<?php print $account->$pfieldname ; ?>
<?php endif; ?><?php print check_plain($account->profile_url) ?></div>
<div class="oben"><div class="name"><b>Name:</b> <?php
print check_plain($account->profile_name)
?></div>
<div class="gender"><b><br />Geschlecht:</b> <?php
print check_plain($account->profile_gender)
?></div>
<div class="state"><b>Bundesland:</b> <?php
print check_plain($account->profile_state)
?></div>
<div class="picture"><?php if ($account->picture) { print theme('user_picture', $account); } ?></div></div></div>
<?php
print "<div class=\"status\">";
$time_period = variable_get('user_block_seconds_online', 300);
$uid = arg(1); // get the current userid that is being viewed.
$users = db_query("SELECT uid, name, access FROM {users} WHERE access >= %d AND uid = $uid", time() - $time_period);
$total_users = db_result($users);
if ($total_users == 1) {
$output = t('<img src="http://bonipo.co.cc/sites/default/files/online.png" title="Online">');
}
else {
$output = t('<img src="http://bonipo.co.cc/sites/default/files/offline.png" title="Offline">');
}
print $output;
print "</div>";
?>
Line 50 -> ?> (letztes)
Wäre echt nett wenn mir jmd. dabei weiterhelfen kann. Ich kenne mich noch nicht soooooo gut mit PHP aus. Ist mein bisher größtes Projekt...xD
Vielen Dank schonaml im Voraus.
Ich wünsche euch allen Frohe Festtage und einen guten Rutsch ins neue Jahr.
MfG
ich
- Anmelden oder Registrieren um Kommentare zu schreiben
Dir fehlt ein <?php endif;
am 23.12.2010 - 17:24 Uhr
Dir fehlt ein
<?php endif; ?>
. Ich vermute mal bei der ersten If-Anweisung nach dem else: . Da ich aber das gesamte Umfeld dieses Code-Schnipsels nicht kenne, kann ich Dir nicht sagen, wo es hingehört.Beste Grüße
Werner