Zugriff (views-view-fields.tpl.php)
am 12.10.2010 - 16:16 Uhr in
hallo hab en kleines Problem versteh grad nicht wie ich an die Daten komme die im Profil stehen. Ich berechne im Profil anhand des Geburtsdatums das Alter des Users. Funktioniert auch einwandfrei. Nun hab ich eine Userliste wo ich einmal das Geburtsdatum ausgebe und dann möchte ich aber auch das Alter dort ausgeben. Meine Idee war nun in meiner Ansicht (Userlist) das Geburtsdatum (profile->Geburtsdatum) im Views zu Themen -> views-view-myfield.tpl.php und dort nochmal die Berechnung zu machen wie alt die Person ist. Nun weiß ich aber nicht wie ich den direkten Zugriff bekomme auf das Feld Geburtsdatum das ich im Profil angeben habe.
ich dachte eig:
<?php
$account->profile_letzteuntersuchung['month']
?>
views-view-myfield.tpl.php:
<?php
// $Id: views-view-field.tpl.php,v 1.1 2008/05/16 22:22:32 merlinofchaos Exp $
/**
* This template is used to print a single field in a view. It is not
* actually used in default Views, as this is registered as a theme
* function which has better performance. For single overrides, the
* template is perfectly okay.
*
* Variables available:
* - $view: The view object
* - $field: The field handler object that can process the input
* - $row: The raw SQL result that can be used
* - $output: The processed output that will normally be used.
*
* When fetching output from the $row, this construct should be used:
* $data = $row->{$field->field_alias}
*
* The above will guarantee that you'll always get the correct data,
* regardless of any changes in the aliasing that might happen if
* the view is modified.
*/
?>
<?php print $output; ?>
- Anmelden oder Registrieren um Kommentare zu schreiben
Hast du das Profil für den
am 12.10.2010 - 18:02 Uhr
Hast du das Profil für den Account auch geladen? $account ist ein User-Object, da stehen standardmäßig noch keine Profil-Daten drin:
<?php
//Profil für $account laden
profile_load_profile($account);
//Profil-Wert in Variable ablegen
$untersuchung = $account->profile_letzteuntersuchung['month'];
?>
Geht leider nicht. Was mach
am 13.10.2010 - 12:52 Uhr
Geht leider nicht. Was mach ich falsch ? wenn ich sage
<?php
profile_load_profile($account);
print $untersuchung = $account->profile_letzteuntersuchung['month'];
?>
kommt es zu keiner ausgabe. Also passt etwas noch nicht ?
Stimmt denn die Struktur des
am 13.10.2010 - 16:57 Uhr
Stimmt denn die Struktur des Profil-Feldes? Das heißt, hast du auch wirklich ein Profil-Feld, das profile_letzteuntersuchung heißt und ist das auch wirklich ein Array, in welchem der Schlüssel 'month' vorkommt?
Und zweitens: Woher hast du eigentlich die Variable $account? Ist die denn überhaupt in der views-view-fields.tpl.php vorhanden?