Сейчас занимаюсь темизацией страницы профиля через user-profile.tpl.php
Вывожу список всех переменных через
<?php <pre>
<?php print_r($account) ?>
</pre>?>
Если есть такая конструкция, как вывести в шабе профиля то отмечено жирным
<?php [album] => Array
(
[album] => Array
(
[count] => <strong>2</strong>
)
[
image] => Array
(
[count] => <strong>14</strong>
)
)
?>
Комментарии
$account['album']['album']['count']
$account['album']['image']['count']
Если пишу так
<?php
print $account['album']['album']['count'];
?>
То вылетает ошибка
<?phpFatal error: Cannot use object of type stdClass as array in Z:\home\site.com\WWW\themes\themeq\user-profile.tpl.php on line 30?>
<?php
print $account->album['album']['count'];
?>