~bentokitdevs/retromod/playlist

« back to all changes in this revision

Viewing changes to moduleconfig.php

  • Committer: ken
  • Date: 2010-04-24 07:20:54 UTC
  • Revision ID: svn-v4:8010c1e9-5c09-0410-80af-c3f6856d18d6:branches/playlist:1732
Created new branch for playlist component. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
class playlistsStorage extends storage {
 
3
 
 
4
        public function __construct() {
 
5
                /* Load up core storage methods */
 
6
                parent::__construct();
 
7
 
 
8
                /* Names of the table(s) and fields storing data for this component */
 
9
 
 
10
                $this->table_playlists_playlist = TABLE_PREFIX.'playlists_playlist';
 
11
                $this->field_playlists_playlist_playlistID = 'playlistID';
 
12
                $this->field_playlists_playlist_gridID = 'gridID';
 
13
                $this->field_playlists_playlist_date = 'date';
 
14
 
 
15
                $this->table_playlists_item = TABLE_PREFIX.'playlists_item';
 
16
                $this->field_playlists_item_playlistID = 'playlistID';
 
17
                $this->field_playlists_item_itemID = 'itemID';
 
18
                $this->field_playlists_item_type = 'type';
 
19
                $this->field_playlists_item_priority = 'priority';
 
20
 
 
21
        }
 
22
}
 
23
?>
 
 
b'\\ No newline at end of file'