Difference between revisions of "AdminLists"

From GeeklogWiki
Jump to: navigation, search
 
Line 2: Line 2:
 
Geeklog 1.4 has an engine to create tables from data. This engine can be used to make sure that all tabular information looks similar all over the site. It is also helpful to reduce the amount of code that has to be written for a table, including template files.
 
Geeklog 1.4 has an engine to create tables from data. This engine can be used to make sure that all tabular information looks similar all over the site. It is also helpful to reduce the amount of code that has to be written for a table, including template files.
  
To use this function, you have to choose between two main differences: Simple & Complex lists. The main difference is that the simple lists need an array of data and the complex lists need an SQL string of data. So if you do not have your data in a database table, you will need to use a simple list. Also, the simple lists only can be displayed several times on a page (such as used on the moderation screen). This guide will tell you first how to create a simple list, and then describe the aditional features of complex lists.
+
To use this function, you have to choose between two main differences: Simple & Complex lists. The main difference is that the simple lists need an array of data and the complex lists need an SQL string of data. So if you do not have your data in a database table, you will need to use a simple list. Also, the simple lists only can be displayed several times on a page (such as used on the moderation and statistics screens). This guide will tell you first how to create a simple list, and then describe the aditional features of complex lists.
 +
 
 +
Generally it is recommended to take any of the existing lists and changing the details. This makes sure that you use the required set of data for a complete table.
  
 
== Simple Lists ==
 
== Simple Lists ==
 
+
As an example, this guide will show you how to create a simple list by using the statistics page /public_html/stats.php.
  
 
== Complex Lists ==
 
== Complex Lists ==

Revision as of 08:50, 1 March 2007

Introduction

Geeklog 1.4 has an engine to create tables from data. This engine can be used to make sure that all tabular information looks similar all over the site. It is also helpful to reduce the amount of code that has to be written for a table, including template files.

To use this function, you have to choose between two main differences: Simple & Complex lists. The main difference is that the simple lists need an array of data and the complex lists need an SQL string of data. So if you do not have your data in a database table, you will need to use a simple list. Also, the simple lists only can be displayed several times on a page (such as used on the moderation and statistics screens). This guide will tell you first how to create a simple list, and then describe the aditional features of complex lists.

Generally it is recommended to take any of the existing lists and changing the details. This makes sure that you use the required set of data for a complete table.

Simple Lists

As an example, this guide will show you how to create a simple list by using the statistics page /public_html/stats.php.

Complex Lists