Show
Ignore:
Timestamp:
09/06/06 09:01:54 (6 years ago)
Author:
benoitg
Message:

filter content type according to various criteria. Will be used more
extensively in the profile manager.

  • Content manager: Use content type filter to only allow Simple

content types (Content without metadata) to be used for metadata.

banner adds, or any other image rotation. Size constraints not yet
implemented

  • Move externally maintained class.phpmailer.php, class.smtp.php

into lib where they belong

  • DateTime?.php: Make class handle an empty date sensibly.
  • Network.php: Show the network again when there is only one.

It was confusing in some screens.

  • page.php: Clarify error message, and set a more reasonnable

paging cascade:

5 min, 30 min, 2 hours, 1 day, 1 week, 1 month

  • Finally fix #127
  • At last, working content scheduled display and expiration for

ContentGroups?. Archiving does not yet have a UI. Content that expires
will simply seem to disapear.

  • Fix #247 (somebody filed a bug before I commited, conveniently

saving me the need to describe it).

  • The Fix for #106 in [1089] returned non-objects, causing error

messages and not displaying what it was meant to display.

Used Guest instead of Annonymous, which will probably be

used for different purpose in the future.

This re-fix does not include duplicate counting yet.

Splash users are not the only users that could log-in multiple times.

I don't have a staging server here, a fix will be

commited in a few minutes if something goes wrong.

  • Cleanup coments.
  • Sync schemas
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/Content/Avatar/Avatar.php

    r1070 r1090  
    6262     * @param string $content_id Content id 
    6363     * 
    64      * @return void 
    65      * 
    66      * @access protected 
    67      */ 
     64     * @return void     */ 
    6865    protected function __construct($content_id) 
    6966    { 
    7067        parent :: __construct($content_id); 
    71         $this->setIsTrivialContent(true); 
    7268    } 
    7369 
     70    /** When a content object is set as Simple, it means that is is used merely to contain it's own data.  No title, description or other metadata will be set or displayed, during display or administration 
     71     * @return true or false */ 
     72    public function isSimpleContent() { 
     73        return true; 
     74    } 
     75     
    7476    /** 
    7577     * Shows the administration interface for Avatar 
     
    137139     * 
    138140     * @return void 
    139      * 
    140      * @access public 
    141141     */ 
    142142    public function processAdminUI() 
     
    151151     * 
    152152     * @return string The HTML fragment for this interface 
    153      * 
    154      * @access public 
    155153     */ 
    156154    public function getUserUI() 
     
    173171     * 
    174172     * @return void 
    175      * 
    176      * @access private 
     173 
    177174     */ 
    178175    private function refresh()