Widget Framework for Pragyan CMS (c) 2010 Pragyan Team http://www.gnu.org/licenses/ GNU Public License For more details, see README Add support for File Upload/Download via the widget's configurations Reload Widgets ,Get Widget Instances. see bottom. More...
Widget Framework for Pragyan CMS (c) 2010 Pragyan Team http://www.gnu.org/licenses/ GNU Public License For more details, see README Add support for File Upload/Download via the widget's configurations Reload Widgets ,Get Widget Instances. see bottom.
Pragyan CMS v3.0 Project.
(c) 2010 Pragyan Team http://www.gnu.org/licenses/ GNU Public License For more details, see README
(c) 2010 Pragyan Team
(c) 2008 Pragyan Team http://www.gnu.org/licenses/ GNU Public License For more details, see README
(c) 2010 Pragyan Team http://www.gnu.org/licenses/ GNU Public License
The purpose of book module is to contain its subpages and provide an client-side interface to switch between them. It helps avoiding page reload for user, reduces number of page request for server, and most important of all we can use javascript libraries give different effects for page switching. Book module doesnt stores any content on itself, it only stores information about which subpages are to be considered as pages inside book and which subpages are to be shown as child pages on global menubar.
Book module uses one table to stores its data: book_desc: page_modulecomponentid - unique id for each book instance initial - default page of book list - list of page_id s to be considered as page of book menu_hide - list of page_id s to be hidden from global menu
If the client browser is not capable of handling javascript workaround has been made using css
(c) 2008 Pragyan Team http://www.gnu.org/licenses/ GNU Public License For more details, see README What it does: Creates a page of type pagelist as a sibling of the pages you want to list i.e. if you want to list all the sub pages of a parent page named "home" ,create a page of type pagelist as a child page of 'home'. It will list all the child pages of page 'home'. 2) The depth, upto which the pagelist should penetrate(list) the pages, can be adjusted by using 'edit' action of the pagelist. By setting the depth value as 3, the no. of sub pages of a particular page shown in the list becomes 3. (The Default value of depth set is 3 which can be changed by changing the file 'pagelist.lib.php' at line 249 currently) 3) By clicking on the go-icon (a skip forward image), the other pages are gone and you are left with a new pagelist with root as the page whose go-icon (skip forward image) was clicked. 4) The image and page name after go-icon(skip-forward image) let you go to respective page at any time (by clicking the link, :) ).
(c) 2010 Pragyan Team http://www.gnu.org/licenses/ GNU Public License
Safedit module can be used to maintain uniformity among pages even if different people are editing. It prevents custom formatting in page by striping all html tags from user, and It provides ways to define absolutely necessary tags like
, Also it provides editing interface that requires no knowledge about HTML.
It stores its contents as sections in database table: safedit_sections: page_modulecomponentid - used to record with safedit page instance this section belongs to section_id - unique id to differentiate each sections within each instance of safedit section_heading - heading for the section section_type - type of section Different types of sections are ('para','ulist','olist','picture'): para - Nomal section ulist - Content are displayed in unordered list(<ul>) olist - Content are displayed in ordered list(<ol>) picture - Content points to a uploaded picture, which will be displayed section_show - used to hide section(if needed) section_priority - used for ordering of sections section_content - Content of the section (Rendered according to the section type)