Subversion Repositories SmartDukaan

Rev

Rev 2838 | Rev 3485 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2838 Rev 3356
Line 721... Line 721...
721
     * Returns all special pages in the database.
721
     * Returns all special pages in the database.
722
     */
722
     */
723
    public static Map<Long, SpecialPage> getSpecialPages() {
723
    public static Map<Long, SpecialPage> getSpecialPages() {
724
        return StorageManager.getStorageManager().getSpecialPages();
724
        return StorageManager.getStorageManager().getSpecialPages();
725
    }
725
    }
-
 
726
    
-
 
727
    /**
-
 
728
     * delete the special pages from database.
-
 
729
     */
-
 
730
    public static void deleteSpecialPage(long specialPageId) {
-
 
731
        StorageManager.getStorageManager().deleteSpecialPage(specialPageId);
-
 
732
    }
726
}
733
}