~edb/quam-plures/item_show_attachments

5896 by fplanque
cleaner urls by default
1
<?php
2
/**
7404.1.1 by EdB
"Tidy Templates" is done. Tutorials/autodocs are very near done as well. Note inc/items/model/_item.class.php around line 357 for a typical example then http://docs.quamplures.net/items/Item.html#methodauthor for how that comes out in autodocs. In the tutorials we point to the correct function/method based on values for $params ... like this: http://docs.quamplures.net/templates/tutorial_Item__methods.pkg.html#info.author
3
 * Stub File
5896 by fplanque
cleaner urls by default
4
 *
7380.4.7 by Tilman Blumenbach
Changing file headers, part 3.1
5
 * Quam Plures - {@link http://quamplures.net/}
7380.4.26 by Tilman Blumenbach
Reverted all GPL links to quamplures.net URLs
6
 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
7577.1.3 by yabs
Updated copyright dates
7
 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
6731 by fplanque
2009
8
 * @copyright (c)2003-2009 by Francois PLANQUE - {@link http://fplanque.net/}
7404.1.1 by EdB
"Tidy Templates" is done. Tutorials/autodocs are very near done as well. Note inc/items/model/_item.class.php around line 357 for a typical example then http://docs.quamplures.net/items/Item.html#methodauthor for how that comes out in autodocs. In the tutorials we point to the correct function/method based on values for $params ... like this: http://docs.quamplures.net/templates/tutorial_Item__methods.pkg.html#info.author
9
 * @package templates
10
 * @subpackage stubfiles
5896 by fplanque
cleaner urls by default
11
 */
12
7404.1.1 by EdB
"Tidy Templates" is done. Tutorials/autodocs are very near done as well. Note inc/items/model/_item.class.php around line 357 for a typical example then http://docs.quamplures.net/items/Item.html#methodauthor for how that comes out in autodocs. In the tutorials we point to the correct function/method based on values for $params ... like this: http://docs.quamplures.net/templates/tutorial_Item__methods.pkg.html#info.author
13
# select which blog
5896 by fplanque
cleaner urls by default
14
$blog = 3;
15
7404.1.1 by EdB
"Tidy Templates" is done. Tutorials/autodocs are very near done as well. Note inc/items/model/_item.class.php around line 357 for a typical example then http://docs.quamplures.net/items/Item.html#methodauthor for how that comes out in autodocs. In the tutorials we point to the correct function/method based on values for $params ... like this: http://docs.quamplures.net/templates/tutorial_Item__methods.pkg.html#info.author
16
# force a template?
7394.1.1 by EdB
the commit message
17
# $template = 'custom';
5896 by fplanque
cleaner urls by default
18
7404.1.1 by EdB
"Tidy Templates" is done. Tutorials/autodocs are very near done as well. Note inc/items/model/_item.class.php around line 357 for a typical example then http://docs.quamplures.net/items/Item.html#methodauthor for how that comes out in autodocs. In the tutorials we point to the correct function/method based on values for $params ... like this: http://docs.quamplures.net/templates/tutorial_Item__methods.pkg.html#info.author
19
# retricts posts to published, hides drafts.
5896 by fplanque
cleaner urls by default
20
$show_statuses = array();
21
7404.1.1 by EdB
"Tidy Templates" is done. Tutorials/autodocs are very near done as well. Note inc/items/model/_item.class.php around line 357 for a typical example then http://docs.quamplures.net/items/Item.html#methodauthor for how that comes out in autodocs. In the tutorials we point to the correct function/method based on values for $params ... like this: http://docs.quamplures.net/templates/tutorial_Item__methods.pkg.html#info.author
22
# ignore before, unix timestamp or 'now'
5896 by fplanque
cleaner urls by default
23
$timestamp_min = '';
24
7404.1.1 by EdB
"Tidy Templates" is done. Tutorials/autodocs are very near done as well. Note inc/items/model/_item.class.php around line 357 for a typical example then http://docs.quamplures.net/items/Item.html#methodauthor for how that comes out in autodocs. In the tutorials we point to the correct function/method based on values for $params ... like this: http://docs.quamplures.net/templates/tutorial_Item__methods.pkg.html#info.author
25
# ignore after, unix timestamp or 'now'
5896 by fplanque
cleaner urls by default
26
$timestamp_max = 'now';
27
7404.1.1 by EdB
"Tidy Templates" is done. Tutorials/autodocs are very near done as well. Note inc/items/model/_item.class.php around line 357 for a typical example then http://docs.quamplures.net/items/Item.html#methodauthor for how that comes out in autodocs. In the tutorials we point to the correct function/method based on values for $params ... like this: http://docs.quamplures.net/templates/tutorial_Item__methods.pkg.html#info.author
28
# change order?
29
# $order = 'ASC';
5896 by fplanque
cleaner urls by default
30
31
/**
7380.4.6 by Tilman Blumenbach
Replaced some more b2evo references (widely visible code comments)
32
 * That's it, now let Quam Plures do the rest! :)
5896 by fplanque
cleaner urls by default
33
 */
7475.5.1 by yabs at org
moved /conf/ to /qp_config/
34
require_once dirname(__FILE__).'/qp_config/_config.php';
5896 by fplanque
cleaner urls by default
35
36
require $inc_path.'_blog_main.inc.php';
7380.4.6 by Tilman Blumenbach
Replaced some more b2evo references (widely visible code comments)
37
?>