]>
src.bluestatic.org Git - bugdar.git/blob - index.php
2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright (c)2002-2007 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 $fetchtemplates = array (
31 $focus [ 'index' ] = 'focus' ;
33 require_once ( './global.php' );
34 require_once ( './includes/class_sort.php' );
36 if (! can_perform ( 'canviewbugs' ))
38 $message- > errorPermission ();
41 $sort = new ListSorter ( 'index' );
42 LoadPaginationFramework ();
44 // ###################################################################
46 $count = $db- > query_first ( "
47 SELECT COUNT(*) AS count
48 FROM " . TABLE_PREFIX
. "bug
49 WHERE (!hidden OR (hidden AND product IN (" . fetch_on_bits ( 'canviewhidden' ) . "))" . ( can_perform ( 'canviewownhidden' ) ? " OR (hidden AND userid = " . $bugsys- > userinfo
[ 'userid' ] . " AND product IN (" . fetch_on_bits ( 'canviewownhidden' ) . "))" : "" ) . ")
50 AND product IN (" . fetch_on_bits ( 'canviewbugs' ) . ")" . (( $bugsys- > options
[ 'hidestatuses' ] OR isset ( $bugsys- > userinfo
[ 'hidestatuses' ])) ? "
51 AND status NOT IN (" . ( $bugsys- > userinfo
[ 'hidestatuses' ] != '' ? $bugsys- > userinfo
[ 'hidestatuses' ] : $bugsys- > options
[ 'hidestatuses' ]) . ")" : "" )
56 $message- > error ( T ( 'There are no bugs to display. This could be because you do not have permission to view bugs, or there may be none in the database.' ));
59 $pagination- > setTotal ( $count [ 'count' ]);
60 $pagination- > splitPages ();
62 $bugs_fetch = $db- > query ( $sort- > fetch_sql_query ( null , $pagination- > fetchLimit ( $pagination- > getPage () - 1 ) . ", " . $pagination- > getPerPage ()));
64 while ( $bug = $db- > fetch_array ( $bugs_fetch ))
66 $funct- > exec_swap_bg ( 'altcolor' , '' );
67 $bug = ProcessBugDataForDisplay ( $bug , $funct- > bgcolour
);
68 $bugs .= $sort- > constructRow ( $bug );
71 $db- > free_result ( $bugs_fetch );
73 $columnHeads = $sort- > constructColumnHeaders ( true , 'p=' . $pagination- > page
. '&pp=' . $pagination- > perpage
);
74 $show [ 'pagenav' ] = ( $pagination- > getPageCount () > 1 );
75 $pagenav = $pagination- > constructPageNav ( $sort- > fetch_sort_link ( $sort- > sortkey
));
77 eval ( ' $template- >flush("' . $template- > fetch ( 'trackerhome' ) . '");' );