Example #1
0
<?php

/// Copyright (c) 2004-2016, Needlworks  / Tatter Network Foundation
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT)
$IV = array('POST' => array('id' => array('id'), 'title' => array('string'), 'current' => array('int', 0)));
require ROOT . '/library/preprocessor.php';
requireStrictRoute();
$result = array('error' => editFeedGroup($blogid, $_POST['id'], $_POST['title']));
ob_start();
printFeedGroups($blogid, $_POST['current']);
$result['view'] = escapeCData(ob_get_contents());
ob_end_clean();
Respond::PrintResult($result);
Example #2
0
<?php

/// Copyright (c) 2004-2012, Needlworks  / Tatter Network Foundation
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT)
$IV = array('POST' => array('group' => array('int', 0, 'default' => 0), 'starred' => array(array('0', '1'), 'default' => '0'), 'keyword' => array('string', 'default' => '')));
require ROOT . '/library/preprocessor.php';
$result = array('error' => '0');
ob_start();
printFeedGroups($blogid, $_POST['group'], $_POST['starred'] == '1', $_POST['keyword'] == '' ? null : $_POST['keyword']);
$result['view'] = escapeCData(ob_get_contents());
ob_end_clean();
Respond::PrintResult($result);
Example #3
0
?>
</span></h2>
								
								<div class="data-inbox">
									<div id="group-section" class="section">
										<h3><?php 
echo _t('피드 그룹');
?>
</h3>
										
										<div id="groupBox" class="container" style="height: <?php 
echo Setting::getBlogSettingGlobal('readerPannelHeight', 150);
?>
px;">
<?php 
printFeedGroups($blogid);
?>
										</div>
									</div>
									
									<hr class="hidden" />
									
									<div id="feed-section" class="section">
										<h3><?php 
echo _t('현재 그룹 내의 피드 목록');
?>
</h3>
									
										<div id="feedBox" class="section" style="height: <?php 
echo Setting::getBlogSettingGlobal('readerPannelHeight', 150);
?>