예제 #1
0
파일: Line.php 프로젝트: Avantians/Textcube
 public function getFormattedList($conditions)
 {
     //data [array(id, blogid, category, content,
     $data = $this->getWithConditions($conditions);
     $view = '';
     foreach ($data as $d) {
         $template = $conditions['template'];
         $d['created'] = Timestamp::getHumanReadable($d['created']);
         if ($d['root'] == 'default') {
             $d['root'] = 'Textcube Line';
         }
         foreach ($conditions['dress'] as $tag => $match) {
             dress($tag, $d[$match], $template);
         }
         $view .= $template;
     }
     return $view;
 }
예제 #2
0
파일: stream.php 프로젝트: ragi79/Textcube
require ROOT . '/library/preprocessor.php';
requireStrictRoute();
$conditions = array();
$conditions['blogid'] = getBlogId();
$conditions['page'] = $_POST['page'];
if (isset($_POST['category'])) {
    $conditions['category'] = $_POST['category'];
}
if (isset($_POST['keyword'])) {
    $conditions['keyword'] = $_POST['keyword'];
}
$conditions['linesforpage'] = $_POST['lines'];
$skin = new Skin($context->getProperty('skin.skin'));
$line = Model_Line::getInstance();
$stream = $line->getWithConditions($conditions);
$contentView = '';
foreach ($stream as $item) {
    $time = Timestamp::getHumanReadable($item['created']);
    if ($item['root'] == 'default') {
        $item['root'] = 'Textcube Line';
    }
    $contentView .= str_replace(array('[##_line_rep_regdate_##]', '[##_line_rep_content_##]', '[##_line_rep_author_##]', '[##_line_rep_source_##]', '[##_line_rep_permalink_##]'), array(fireEvent('ViewLineDate', $time, $item['created']), fireEvent('ViewLineContent', $item['content']), fireEvent('ViewLineAuthor', htmlspecialchars($item['author'])), fireEvent('ViewLineSource', htmlspecialchars($item['root'])), fireEvent('ViewLinePermalink', $item['permalink'])), $skin->lineItem);
}
if (empty($stream)) {
    $contentView = '';
    $buttonView = '';
} else {
    $buttonView = str_replace(array('[##_line_onclick_more_##]'), array('getMoreLineStream(' . ($conditions['page'] + 1) . ',' . $conditions['linesforpage'] . ',\'bottom\');return false;'), $skin->lineButton);
}
$result = array('error' => 0, 'contentView' => $contentView, 'buttonView' => $buttonView);
Respond::PrintResult($result);