$root = AnimeCommentQuery::create()->findRoot(2);
$html = "<ul>{$root->getComment()}";
foreach ($root->getDescendants() as $post)
{
$html .= '<li style="padding-left: '.$post->getLevel().' em;">';
$html .= $post->getComment();
$html .= ' by '.$post->getIbfMembersRelatedByInsertBy()->getName();
$html .= "</li>";
}
$html .= "</ul>";
echo $html;
投稿のページ番号を付けたいのですが、次の方法ではできません。
$root = AnimeCommentQuery::create()->findRoot(2)->paginate(2, 1);
また
$root = AnimeCommentQuery::create()->paginate(2, 1)->findRoot(2);
propel の標準的なページネーションで実行できますか? そしてどうやって?