Yii 1.0 RC (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Yii 1.0 RC (Default branch)
# 1  
Old 11-11-2008
Yii 1.0 RC (Default branch)

Yii is a high-performance programming framework for developing Web applications in PHP 5. It encourages reusability in Web Development and can significantly accelerate the development process. Yii is easy to learn and use. You only need to know PHP and object-oriented programming. You are not forced to learn a new configuration or templating language. Yii is fast; its overhead to applications written on top of it is negligible. License: BSD License (revised) Changes:
This release adds three new components: CGettextMessageSource, CHtmlPurifier, and CMarkdown. It adds support for persistent page state, and support to allow controller classes to be organized in subdirectories. CHtml has been enhanced by adding checkBoxList, radioButtonList, activeCheckBoxList, activeRadioButtonList, and ajaxSubmitButton. A hangman demo has been added. Nearly a dozen issues have been fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Jifty::Web::Session::JDBI(3pm)				User Contributed Perl Documentation			    Jifty::Web::Session::JDBI(3pm)

NAME
Jifty::Web::Session - A Jifty session handler SYNOPSIS
In your etc/config.yml (optional): framework: Web: # The default ($PORT is replaced by the port the app is running on) SessionCookieName: JIFTY_SID_$PORT new Returns a new, empty session. id Returns the session's id if it has been loaded, or "undef" otherwise. create Creates a new row in the Jifty::Model::Session table. load [ID] Load up the current session from the given "ID", or the appropriate cookie (see "cookie_name") otherwise. If both of those fail, creates a session in the database. load_by_kv key => value Load up the current session from the given (key, value) pair. If no matching session could be found, it will create a new session with the key, value set. Be sure that what you're loading by is unique. If you're loading a session based on, say, a timestamp, then you're asking for trouble. get KEY [TYPE] Returns the value for "KEY" for the current user's session. "TYPE", which defaults to "key", allows accessing of other namespaces in the session, including "metadata" and "continuation". set KEY => VALUE, [TYPE] Sets the value "VALUE" for "KEY" for the session. "TYPE", which defaults to "key", allows values to be set in other namespaces, including "metadata" and "continuation". "VALUE" can be an arbitrary perl data structure -- "Jifty::Web::Session" will serialize it for you. remove KEY, [TYPE] Remove key "KEY" from the cache. "TYPE" defaults to "key". remove_all Removes the session from the database entirely. continuations Return a hash of all the continuations in this session, keyed by the continuations' "id". perl v5.14.2 2010-12-08 Jifty::Web::Session::JDBI(3pm)