Jump to content
  • 0

Как работать с видом в Zend Framework


Bolmazov
 Share

Question

Только начинаю разбираться с MVC Zend Framework-а и столкнулся с проблемой работы с видом.

Есть шаблон типа:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
....
</body>
</html>

Далее есть сетка сайта:

		<div class="wrapper">
<div class="column-l">
</div>
<div class="header">
<strong>Левое расположение меню. Все колонки с минимальным контентом.</strong>
</div>
<div class="column-r">
</div>
<div class="container">
<div class="column-l">
Левая колонка
</div>
<div class="content">
<?php echo $this->escape($this->content); ?>
</div>
<div class="column-r">
Правая колонка
</div>
<div class="clear">
</div>
</div>
</div>
<div class="footer">
Прижимающийся футер
</div>

Ну и сам контент формирует контроллер:

	class IndexController  extends Zend_Controller_Action{

function indexAction()
{
$this->view->content= "Контент";
}
}

Не могу понять как использовать (Zend_View и Zend_Layout или что-то подобное) что бы собрать страницу: контент вставить в сетку и всё это в общий шаблон.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

А что делаешь? Что не порлучается?

Если у тебя основной шаблон

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<?php print $this->layout()->content; ?>
</body>
</html>

А контроллер

  class IndexController  extends Zend_Controller_Action{

function indexAction()
{
$this->view->content= "Контент";
}
}

То сетка сайта должна лежать в папке index в файле index.tpl

Или М.б. что-то не то из-за того что ты называешь переменную "content", м.б. она используется системой?

Link to comment
Share on other sites

  • 0

Проблема в том, что я могу вставить в шаблон контент из контроллера (получается два этапа), но мне нужно контент вставить в шаблон именно для этой страницы (index.tpl), это всё вставить в сетку (которая м.б. использована несколькими страницами), а потом уже это всё вставить в основной шаблон (<head><body> ....) (получается три этапа).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy