~edb/quam-plures/item_show_attachments

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
 * Stub File
 *
 * Quam Plures - {@link http://quamplures.net/}
 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
 * @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/}
 * @package templates
 * @subpackage stubfiles
 */

# select which blog
$blog = 3;

# force a template?
# $template = 'custom';

# retricts posts to published, hides drafts.
$show_statuses = array();

# ignore before, unix timestamp or 'now'
$timestamp_min = '';

# ignore after, unix timestamp or 'now'
$timestamp_max = 'now';

# change order?
# $order = 'ASC';

/**
 * That's it, now let Quam Plures do the rest! :)
 */
require_once dirname(__FILE__).'/qp_config/_config.php';

require $inc_path.'_blog_main.inc.php';
?>