Вывожу списк допустимых значение через:
<?php print '<pre>'. check_plain(print_r($profile, 1)) .'</pre>'; ?>
Получаю →
(
[user_picture] => <div class="picture">
</div>
[content_profile] => <p id="content-profile-view"> <h3 class="content-profile-title" id="content-profile-title-profile">
Профиль </h3>
<div class="content-profile-display" id="content-profile-display-profile">
<div id="node-1" class="node clear-block">
<div class="photo"><a href="http://halturka.kz/sites/default/files/koala.png" title="Ким Виктория Даниловна" class="thickbox" rel="gallery-1"><img src="http://halturka.kz/sites/default/files/imagecache/inside_node_200x200/ko... alt="" title="Ким Виктория Даниловна" class="imagecache imagecache-inside_node_200x200" width="200" height="150" /></a></div>
<div class="born"><strong>Дата рождения: </strong><span class="date-display-single">08.07.1989</span></div>
<div class="city"><strong>Город: </strong>Алматы</div>
</div> </div><br /></p>
Как вывести значение [content_profile] в user-profile.tpl.php?
Пробовал →
<?php print $profile->content_profile; ?>
Но ничего не работает, помогите пожалуйста)
Комментарии
Пилин, вы читать научитесь сначала и внимательно смотреть на то что вам код выдает!!!!
Array
( [user_picture] =>
Ну какого хрена вам что-то должно выдать если вы к элементу МАССИВА ОБРАЩАЕТЕСЬ КАК К ОБЪЕКТУ!!!!!!
<?php print $profile->content_profile; ?>
<?php print $profile['content_profile]'; ?> // Не судьба????????
?>
Спасибо)) Не нервничайте))
было бы неплохо что бы была инструкция, как прописывать тот или иной тип сск поля... а то текстовые только пашут.
так правильней, а то молодежжж будет вопросы задавать
<?php print $profile['content_profile']; ?>