Show
Ignore:
Timestamp:
09/06/06 09:01:54 (7 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/TrivialLangstring/TrivialLangstring.php

    r1083 r1090  
    6464     * @param string $content_id Content id 
    6565     * 
    66      * @return void 
    67      * 
    68      * @access protected 
    69      */ 
     66     * @return void     */ 
    7067    protected function __construct($content_id) 
    7168    { 
    7269        parent::__construct($content_id); 
    73         $this->setIsTrivialContent(true); 
    7470 
    7571        /* 
     
    7874        parent::setIsPersistent(false); 
    7975    } 
    80  
     76    /** 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 
     77     * @return true or false */ 
     78    public function isSimpleContent() { 
     79        return true; 
     80    } 
    8181    /** 
    8282     * A short string representation of the content 
    8383     * 
    8484     * @return string Returns the content 
    85      * 
    86      * @access public 
    8785     */ 
    8886    public function __toString() 
     
    10098     * 
    10199     * @return void 
    102      * 
    103      * @access private 
     100 
    104101     */ 
    105102    private function refresh()