Cheetah
Public Member Functions | Public Attributes | List of all members
ChBlogsModule Class Reference
Inheritance diagram for ChBlogsModule:
ChWsbModule

Public Member Functions

 __construct ($aModule)
 
 CheckLogged ()
 
 GetHeaderString ()
 
 GenCommandForms ()
 
 isAllowedComments (&$aBlogPost)
 
 isAllowedCreatorCommentsDeleteAndEdit (&$aBlogPost, $isPerformAction=false)
 
 isAllowedBlogView ($iOwnerID, $isPerformAction=false)
 
 isAllowedBlogPostView ($iOwnerID, $isPerformAction=false)
 
 isAllowedBlogsBrowse ($isPerformAction=false)
 
 isAllowedBlogsPostsBrowse ($isPerformAction=false)
 
 isAllowedBlogPostSearch ($isPerformAction=false)
 
 isAllowedPostAdd ($isPerformAction=false)
 
 isAllowedPostEdit ($iOwnerID, $isPerformAction=false)
 
 isAllowedPostDelete ($iOwnerID, $isPerformAction=false)
 
 isAllowedApprove ($isPerformAction=false)
 
 isAllowedShare (&$aDataEntry)
 
 isAdmin ()
 
 _defineActions ()
 
 GenBlogAdminIndex ()
 
 GenBlogHome ()
 
 GenBlogLists ($sType='', $bBlock=true)
 
 GenPostListMobile ($iAuthor=0, $sMode=false)
 
 GenPostLists ($sType='', $bBlock=true)
 
 _GenPosts ($iPostViewType, $iPerPage, $sMode, $aParams, $sOrder, &$oSearchResult, $sMobileWrapper=false)
 
 GenPostsOfCategory ()
 
 GenMemberDescrAndCat ($aBlogsRes, $sCategoryName='')
 
 GenMemberBlog ($iUserID=0)
 
 ActionDelImg ()
 
 ActionDeletePost ($iPostID=0)
 
 getViewingPostInfo ()
 
 getBlogPostBlock ()
 
 getPostSocialSharingBlock ()
 
 getCommentsBlock ()
 
 getActionsBlock ()
 
 serviceGetSubscriptionParams ($sAction, $iEntryId)
 
 getRateBlock ()
 
 getPostOverviewBlock ()
 
 getPostTagsBlock ()
 
 getPostCategoriesBlock ()
 
 getPostFeatureBlock ()
 
 GenPostPage ($iParamPostID=0)
 
 GenMyPageAdmin ($sMode='')
 
 AddNewPostForm ($iPostID=0, $bBox=true)
 
 getTagLinks ($sTagList, $sType='tag', $sDivider=' ')
 
 GenAddCategoryForm ()
 
 ActionChangeFeatureStatus ()
 
 GenSearchResult ()
 
 GenBlogCalendar ($isMiniMode=false, $iBlockID=0, $sDynamicUrl='')
 
 GenPostCalendarDay ()
 
 GenCreateBlogForm ($bBox=true)
 
 GenAdminTabbedPage ()
 
 getAdministrationSettings ()
 
 ActionEditBlog ()
 
 ActionDeleteBlogSQL ()
 
 serviceActionDeleteBlog ()
 
 ActionSharePopup ($iPostId)
 
 ActionPrepareForEdit ($sInput)
 
 defineUserId ()
 
 defineCategoryName ()
 
 isPermalinkEnabled ()
 
 genBlogFormUrl ()
 
 genBlogSubUrl ()
 
 genBlogLink ( $sAction, $aUser=array(), $aCategory=array(), $aPost=array(), $sTag='', $bSubUrl=false)
 
 genUrl ($iEntryId, $sEntryUri, $sType='entry')
 
 Templater ($sPostsSect, $sRightSect)
 
 GenTagsPage ()
 
 serviceBlogsCalendarIndexPage ($iBlockID)
 
 serviceBlogsIndexPage ($bShortPgn=true, $iPerPage=0)
 
 serviceBlogsProfilePage ($_iProfileID)
 
 serviceBlogsRss ()
 
 serviceGetCommonCss ()
 
 serviceGetMemberMenuItem ()
 
 serviceGetMemberMenuItemAddContent ()
 
 serviceGetPostsCountForMember ($iMemberId)
 
 serviceResponseProfileDelete ($oAlert)
 
 serviceGetWallData ()
 
 serviceGetWallPost ($aEvent)
 
 serviceGetWallAddComment ($aEvent)
 
 serviceGetWallPostComment ($aEvent)
 
 serviceGetWallPostOutline ($aEvent)
 
 serviceGetSpyData ()
 
 serviceGetSpyPost ($sAction, $iObjectId=0, $iSenderId=0, $aExtraParams=array())
 
 onPostApproveDisapprove ($iBPostID, $isApprove)
 
- Public Member Functions inherited from ChWsbModule
 isLogged ()
 
 getUserId ()
 
 getUserPassword ()
 
 getTitleKey ($sUri)
 
 serviceGetBaseUrl ()
 

Public Attributes

 $iIconSize
 
 $iThumbSize
 
 $iBigThumbSize
 
 $iImgSize
 
 $bAdminMode
 
 $sSpacerPath
 
 $iLastPostedPostID
 
 $iPostViewType
 
 $iViewingPostID
 
 $aViewingPostInfo
 
 $sHomeUrl
 
 $sHomePath
 
 $oPrivacy
 
 $_iVisitorID
 
 $_sPageHeader
 
- Public Attributes inherited from ChWsbModule
 $_aModule
 
 $_oDb
 
 $_oTemplate
 
 $_oConfig
 

Additional Inherited Members

- Static Public Member Functions inherited from ChWsbModule
static getInstance ($sClassName)
 
static getTitle ($sUri)
 

Detailed Description

Blogs module by Cheetah

This module allow user to keep blog.

Example of using this module to get any member blog page:

ch_import('ChWsbModuleDb'); require_once( CH_DIRECTORY_PATH_MODULES . 'cheetah/blogs/classes/ChBlogsModule.php'); $oModuleDb = new ChWsbModuleDb(); $aModule = $oModuleDb->getModuleByUri('blogs'); $oBlogs = new ChBlogsModule($aModule); echo $oBlogs->GenMemberBlog($iMemberID);

Profile's Wall: 'create' event is displayed on profile's wall

Spy: 'create' event is displayed in spy

Memberships/ACL: View blog - CH_BLOG_VIEW View posts - CH_BLOG_POST_VIEW Browse blogs - CH_BLOGS_BROWSE Browse posts - CH_BLOGS_POSTS_BROWSE Use search and view search results - CH_BLOG_POST_SEARCH Add posts - CH_BLOG_POST_ADD Edit any post (as admin) - CH_BLOG_POSTS_EDIT_ANY_POST Delete any post (as admin) - CH_BLOG_POSTS_DELETE_ANY_POST Approve any post (as admin) - CH_BLOG_POSTS_APPROVING

Service methods:

Delete blog (carefully with it)

See also
ChBlogsModule::serviceActionDeleteBlog ChWsbService::call('blogs', 'action_delete_blog', array());

Blogs block for index page (as PHP function)

See also
ChBlogsModule::serviceBlogsIndexPage ChWsbService::call('blogs', 'blogs_index_page', array());

Blogs block for profile page (as PHP function)

See also
ChBlogsModule::serviceBlogsProfilePage ChWsbService::call('blogs', 'blogs_profile_page', array($_iProfileID));

Generation of member RSS feeds

See also
ChBlogsModule::serviceBlogsRss ChWsbService::call('blogs', 'blogs_rss', array());

Get common css

See also
ChBlogsModule::serviceGetCommonCss ChWsbService::call('blogs', 'get_common_css', array());

Get member menu item - my content

See also
ChBlogsModule::serviceGetMemberMenuItem ChWsbService::call('blogs', 'get_member_menu_item');

Get member menu item - add content

See also
ChBlogsModule::serviceGetMemberMenuItemAddContent ChWsbService::call('blogs', 'get_member_menu_item_add_content');

Get number of posts for particular member

See also
ChBlogsModule::serviceGetPostsCountForMember ChWsbService::call('blogs', 'get_posts_count_for_member', array($iMemberId));

Get Spy data

See also
ChBlogsModule::serviceGetSpyData ChWsbService::call('blogs', 'get_spy_data', array());

Get Spy blog post

See also
ChBlogsModule::serviceGetSpyPost ChWsbService::call('blogs', 'get_spy_post', array($sAction, $iObjectId, $iSenderId));

Alerts: Alerts type/unit - 'ch_blogs' The following alerts are rised

view_post - view post $this->iViewingPostID - viewing post id $this->_iVisitorID - visitor id

create - creating of new post $iPostID - post id (for new post - 0) $iPostOwnerID - post owner id

edit_post - editing of existed post $iPostID - post id $iPostOwnerID - post owner id

delete_post - deleting of existed post $iPostID - post id $iPostOwnerID - post owner id

Definition at line 189 of file ChBlogsModule.php.

Constructor & Destructor Documentation

◆ __construct()

ChBlogsModule::__construct (   $aModule)

constructor

Reimplemented from ChWsbModule.

Definition at line 219 of file ChBlogsModule.php.

Member Function Documentation

◆ _defineActions()

ChBlogsModule::_defineActions ( )

Definition at line 522 of file ChBlogsModule.php.

◆ _GenPosts()

ChBlogsModule::_GenPosts (   $iPostViewType,
  $iPerPage,
  $sMode,
  $aParams,
  $sOrder,
$oSearchResult,
  $sMobileWrapper = false 
)

Get list of blog posts

Parameters
$iPostViewTypeview type
$iPerPageposts per page
$sModelast[default], top, featured
$sOrderlast[default], popular, top
$oSearchResultsearch result object will be assigned to this variable
Returns
HTML string of blog posts

Definition at line 895 of file ChBlogsModule.php.

◆ ActionChangeFeatureStatus()

ChBlogsModule::ActionChangeFeatureStatus ( )

Definition at line 2391 of file ChBlogsModule.php.

◆ ActionDeleteBlogSQL()

ChBlogsModule::ActionDeleteBlogSQL ( )

Deleting a Full Blog

Returns
MsgBox result

Definition at line 2765 of file ChBlogsModule.php.

◆ ActionDeletePost()

ChBlogsModule::ActionDeletePost (   $iPostID = 0)

SQL: Delete post by POSTed data

Returns
MsgBox of result

Definition at line 1203 of file ChBlogsModule.php.

◆ ActionDelImg()

ChBlogsModule::ActionDelImg ( )

Definition at line 1159 of file ChBlogsModule.php.

◆ ActionEditBlog()

ChBlogsModule::ActionEditBlog ( )

Editing a Description of Blog

Returns
MsgBox result

Definition at line 2735 of file ChBlogsModule.php.

◆ ActionPrepareForEdit()

ChBlogsModule::ActionPrepareForEdit (   $sInput)

Definition at line 2810 of file ChBlogsModule.php.

◆ ActionSharePopup()

ChBlogsModule::ActionSharePopup (   $iPostId)

Definition at line 2794 of file ChBlogsModule.php.

◆ AddNewPostForm()

ChBlogsModule::AddNewPostForm (   $iPostID = 0,
  $bBox = true 
)

Generate Form for NewPost/EditPost

Parameters
$iPostID- Post ID
Returns
HTML presentation of data

Definition at line 1971 of file ChBlogsModule.php.

◆ CheckLogged()

ChBlogsModule::CheckLogged ( )

Definition at line 248 of file ChBlogsModule.php.

◆ defineCategoryName()

ChBlogsModule::defineCategoryName ( )

Definition at line 2839 of file ChBlogsModule.php.

◆ defineUserId()

ChBlogsModule::defineUserId ( )

Definition at line 2818 of file ChBlogsModule.php.

◆ GenAddCategoryForm()

ChBlogsModule::GenAddCategoryForm ( )

Generate a Form to Editing/Adding of Category of Blog

Returns
HTML presentation of data

Definition at line 2297 of file ChBlogsModule.php.

◆ GenAdminTabbedPage()

ChBlogsModule::GenAdminTabbedPage ( )

Definition at line 2689 of file ChBlogsModule.php.

◆ GenBlogAdminIndex()

ChBlogsModule::GenBlogAdminIndex ( )

Definition at line 538 of file ChBlogsModule.php.

◆ GenBlogCalendar()

ChBlogsModule::GenBlogCalendar (   $isMiniMode = false,
  $iBlockID = 0,
  $sDynamicUrl = '' 
)

Definition at line 2494 of file ChBlogsModule.php.

◆ genBlogFormUrl()

ChBlogsModule::genBlogFormUrl ( )

Definition at line 2860 of file ChBlogsModule.php.

◆ GenBlogHome()

ChBlogsModule::GenBlogHome ( )

Definition at line 595 of file ChBlogsModule.php.

◆ genBlogLink()

ChBlogsModule::genBlogLink (   $sAction,
  $aUser = array(),
  $aCategory = array(),
  $aPost = array(),
  $sTag = '',
  $bSubUrl = false 
)

Definition at line 2881 of file ChBlogsModule.php.

◆ GenBlogLists()

ChBlogsModule::GenBlogLists (   $sType = '',
  $bBlock = true 
)

Generate List of Blogs

Parameters
$sType- tyle of list ('top', 'last')
Returns
HTML presentation of data

Definition at line 609 of file ChBlogsModule.php.

◆ genBlogSubUrl()

ChBlogsModule::genBlogSubUrl ( )

Definition at line 2870 of file ChBlogsModule.php.

◆ GenCommandForms()

ChBlogsModule::GenCommandForms ( )

Generate common forms and includes js

Returns
void

Definition at line 374 of file ChBlogsModule.php.

◆ GenCreateBlogForm()

ChBlogsModule::GenCreateBlogForm (   $bBox = true)

Generate a Form to Create Blog

Returns
HTML presentation of data

Definition at line 2582 of file ChBlogsModule.php.

◆ GenMemberBlog()

ChBlogsModule::GenMemberBlog (   $iUserID = 0)

Generate User`s Blog Page

Parameters
$iUserID- User ID
Returns
HTML presentation of data

Definition at line 1035 of file ChBlogsModule.php.

◆ GenMemberDescrAndCat()

ChBlogsModule::GenMemberDescrAndCat (   $aBlogsRes,
  $sCategoryName = '' 
)

Generate User Right Part for Blogs

Parameters
$aBlogsRes- Blog Array Data
$iView- type of view(1 is short view, 2 is full view, 3 is post view(short))
Returns
HTML presentation of data

Definition at line 961 of file ChBlogsModule.php.

◆ GenMyPageAdmin()

ChBlogsModule::GenMyPageAdmin (   $sMode = '')

Definition at line 1838 of file ChBlogsModule.php.

◆ GenPostCalendarDay()

ChBlogsModule::GenPostCalendarDay ( )

Generate List of Posts for calendar

Returns
HTML presentation of data

Definition at line 2516 of file ChBlogsModule.php.

◆ GenPostListMobile()

ChBlogsModule::GenPostListMobile (   $iAuthor = 0,
  $sMode = false 
)

Generate List of Posts for mobile frontend

Parameters
$iAuthor- display posts of provided user only
$sMode- display all latest[default], featured or top posts
Returns
HTML presentation of data

Definition at line 739 of file ChBlogsModule.php.

◆ GenPostLists()

ChBlogsModule::GenPostLists (   $sType = '',
  $bBlock = true 
)

Generate List of Posts

Parameters
$sType- tyle of list ('top', 'last'), but now realized only Top posts
Returns
HTML presentation of data

Definition at line 836 of file ChBlogsModule.php.

◆ GenPostPage()

ChBlogsModule::GenPostPage (   $iParamPostID = 0)

Generate User`s Blog Post Page

Returns
HTML presentation of data

Definition at line 1803 of file ChBlogsModule.php.

◆ GenPostsOfCategory()

ChBlogsModule::GenPostsOfCategory ( )

Definition at line 934 of file ChBlogsModule.php.

◆ GenSearchResult()

ChBlogsModule::GenSearchResult ( )

Generate a Block of searching result by Tag (GET is tagKey)

Returns
HTML presentation of data

Definition at line 2422 of file ChBlogsModule.php.

◆ GenTagsPage()

ChBlogsModule::GenTagsPage ( )

New implementation of Tags page

Returns
html

Definition at line 2982 of file ChBlogsModule.php.

◆ genUrl()

ChBlogsModule::genUrl (   $iEntryId,
  $sEntryUri,
  $sType = 'entry' 
)

Definition at line 2955 of file ChBlogsModule.php.

◆ getActionsBlock()

ChBlogsModule::getActionsBlock ( )

Definition at line 1430 of file ChBlogsModule.php.

◆ getAdministrationSettings()

ChBlogsModule::getAdministrationSettings ( )

Definition at line 2705 of file ChBlogsModule.php.

◆ getBlogPostBlock()

ChBlogsModule::getBlogPostBlock ( )

Definition at line 1330 of file ChBlogsModule.php.

◆ getCommentsBlock()

ChBlogsModule::getCommentsBlock ( )

Definition at line 1419 of file ChBlogsModule.php.

◆ GetHeaderString()

ChBlogsModule::GetHeaderString ( )

Return string for Header, depends at POST params

Returns
Textpresentation of data

Definition at line 260 of file ChBlogsModule.php.

◆ getPostCategoriesBlock()

ChBlogsModule::getPostCategoriesBlock ( )

Definition at line 1711 of file ChBlogsModule.php.

◆ getPostFeatureBlock()

ChBlogsModule::getPostFeatureBlock ( )

Definition at line 1764 of file ChBlogsModule.php.

◆ getPostOverviewBlock()

ChBlogsModule::getPostOverviewBlock ( )

Definition at line 1581 of file ChBlogsModule.php.

◆ getPostSocialSharingBlock()

ChBlogsModule::getPostSocialSharingBlock ( )

Definition at line 1395 of file ChBlogsModule.php.

◆ getPostTagsBlock()

ChBlogsModule::getPostTagsBlock ( )

Definition at line 1640 of file ChBlogsModule.php.

◆ getRateBlock()

ChBlogsModule::getRateBlock ( )

Definition at line 1562 of file ChBlogsModule.php.

◆ getTagLinks()

ChBlogsModule::getTagLinks (   $sTagList,
  $sType = 'tag',
  $sDivider = ' ' 
)

Definition at line 2277 of file ChBlogsModule.php.

◆ getViewingPostInfo()

ChBlogsModule::getViewingPostInfo ( )

Definition at line 1275 of file ChBlogsModule.php.

◆ isAdmin()

ChBlogsModule::isAdmin ( )

Definition at line 517 of file ChBlogsModule.php.

◆ isAllowedApprove()

ChBlogsModule::isAllowedApprove (   $isPerformAction = false)

Definition at line 494 of file ChBlogsModule.php.

◆ isAllowedBlogPostSearch()

ChBlogsModule::isAllowedBlogPostSearch (   $isPerformAction = false)

Definition at line 447 of file ChBlogsModule.php.

◆ isAllowedBlogPostView()

ChBlogsModule::isAllowedBlogPostView (   $iOwnerID,
  $isPerformAction = false 
)

Definition at line 414 of file ChBlogsModule.php.

◆ isAllowedBlogsBrowse()

ChBlogsModule::isAllowedBlogsBrowse (   $isPerformAction = false)

Definition at line 425 of file ChBlogsModule.php.

◆ isAllowedBlogsPostsBrowse()

ChBlogsModule::isAllowedBlogsPostsBrowse (   $isPerformAction = false)

Definition at line 436 of file ChBlogsModule.php.

◆ isAllowedBlogView()

ChBlogsModule::isAllowedBlogView (   $iOwnerID,
  $isPerformAction = false 
)

Definition at line 403 of file ChBlogsModule.php.

◆ isAllowedComments()

ChBlogsModule::isAllowedComments ( $aBlogPost)

Definition at line 380 of file ChBlogsModule.php.

◆ isAllowedCreatorCommentsDeleteAndEdit()

ChBlogsModule::isAllowedCreatorCommentsDeleteAndEdit ( $aBlogPost,
  $isPerformAction = false 
)

Definition at line 389 of file ChBlogsModule.php.

◆ isAllowedPostAdd()

ChBlogsModule::isAllowedPostAdd (   $isPerformAction = false)

Definition at line 458 of file ChBlogsModule.php.

◆ isAllowedPostDelete()

ChBlogsModule::isAllowedPostDelete (   $iOwnerID,
  $isPerformAction = false 
)

Definition at line 483 of file ChBlogsModule.php.

◆ isAllowedPostEdit()

ChBlogsModule::isAllowedPostEdit (   $iOwnerID,
  $isPerformAction = false 
)

Definition at line 472 of file ChBlogsModule.php.

◆ isAllowedShare()

ChBlogsModule::isAllowedShare ( $aDataEntry)

Definition at line 508 of file ChBlogsModule.php.

◆ isPermalinkEnabled()

ChBlogsModule::isPermalinkEnabled ( )

Definition at line 2852 of file ChBlogsModule.php.

◆ onPostApproveDisapprove()

ChBlogsModule::onPostApproveDisapprove (   $iBPostID,
  $isApprove 
)

Fired when post status is changed to approved or disapproved

Definition at line 3729 of file ChBlogsModule.php.

◆ serviceActionDeleteBlog()

ChBlogsModule::serviceActionDeleteBlog ( )

Blog deleting. For outer usage (carefully in using).

Definition at line 2789 of file ChBlogsModule.php.

◆ serviceBlogsCalendarIndexPage()

ChBlogsModule::serviceBlogsCalendarIndexPage (   $iBlockID)

Blogs mini-calendar block for index page (as PHP function). List of latest posts.

Returns
html of blog mini-calendar

Definition at line 3000 of file ChBlogsModule.php.

◆ serviceBlogsIndexPage()

ChBlogsModule::serviceBlogsIndexPage (   $bShortPgn = true,
  $iPerPage = 0 
)

Blogs block for index page (as PHP function). List of latest posts.

Returns
html of last blog posts

Definition at line 3014 of file ChBlogsModule.php.

◆ serviceBlogsProfilePage()

ChBlogsModule::serviceBlogsProfilePage (   $_iProfileID)

Blogs block for profile page (as PHP function). List of latest posts of member.

Parameters
$_iProfileID- member id
Returns
html of last blog posts

Definition at line 3046 of file ChBlogsModule.php.

◆ serviceBlogsRss()

ChBlogsModule::serviceBlogsRss ( )

Printing of member`s blog post rss feeds

Parameters
ch_get('pid') - member id
Returns
html of blog posts of member

Definition at line 3078 of file ChBlogsModule.php.

◆ serviceGetCommonCss()

ChBlogsModule::serviceGetCommonCss ( )

Get common blogs css

Returns
void

Definition at line 3112 of file ChBlogsModule.php.

◆ serviceGetMemberMenuItem()

ChBlogsModule::serviceGetMemberMenuItem ( )

Get member menu item - my content

Returns
html with generated menu item

Definition at line 3122 of file ChBlogsModule.php.

◆ serviceGetMemberMenuItemAddContent()

ChBlogsModule::serviceGetMemberMenuItemAddContent ( )

Get member menu item - add content

Returns
html with generated menu item

Definition at line 3146 of file ChBlogsModule.php.

◆ serviceGetPostsCountForMember()

ChBlogsModule::serviceGetPostsCountForMember (   $iMemberId)

Get number of posts for particular member

Returns
html with generated menu item

Definition at line 3168 of file ChBlogsModule.php.

◆ serviceGetSpyData()

ChBlogsModule::serviceGetSpyData ( )

Get Spy data

@returm array of necessary parameters

Definition at line 3631 of file ChBlogsModule.php.

◆ serviceGetSpyPost()

ChBlogsModule::serviceGetSpyPost (   $sAction,
  $iObjectId = 0,
  $iSenderId = 0,
  $aExtraParams = array() 
)

Get Spy post

$sAction - name of accepted action $iObjectId - object id $iSenderId - sender id

@returm array of necessary parameters

Definition at line 3676 of file ChBlogsModule.php.

◆ serviceGetSubscriptionParams()

ChBlogsModule::serviceGetSubscriptionParams (   $sAction,
  $iEntryId 
)

Definition at line 1537 of file ChBlogsModule.php.

◆ serviceGetWallAddComment()

ChBlogsModule::serviceGetWallAddComment (   $aEvent)

Definition at line 3358 of file ChBlogsModule.php.

◆ serviceGetWallData()

ChBlogsModule::serviceGetWallData ( )

Definition at line 3193 of file ChBlogsModule.php.

◆ serviceGetWallPost()

ChBlogsModule::serviceGetWallPost (   $aEvent)

Definition at line 3242 of file ChBlogsModule.php.

◆ serviceGetWallPostComment()

ChBlogsModule::serviceGetWallPostComment (   $aEvent)

DEPRICATED, saved for backward compatibility

Definition at line 3424 of file ChBlogsModule.php.

◆ serviceGetWallPostOutline()

ChBlogsModule::serviceGetWallPostOutline (   $aEvent)

Definition at line 3485 of file ChBlogsModule.php.

◆ serviceResponseProfileDelete()

ChBlogsModule::serviceResponseProfileDelete (   $oAlert)

Definition at line 3176 of file ChBlogsModule.php.

◆ Templater()

ChBlogsModule::Templater (   $sPostsSect,
  $sRightSect 
)

Definition at line 2966 of file ChBlogsModule.php.

Member Data Documentation

◆ $_iVisitorID

ChBlogsModule::$_iVisitorID

Definition at line 215 of file ChBlogsModule.php.

◆ $_sPageHeader

ChBlogsModule::$_sPageHeader

Definition at line 216 of file ChBlogsModule.php.

◆ $aViewingPostInfo

ChBlogsModule::$aViewingPostInfo

Definition at line 209 of file ChBlogsModule.php.

◆ $bAdminMode

ChBlogsModule::$bAdminMode

Definition at line 200 of file ChBlogsModule.php.

◆ $iBigThumbSize

ChBlogsModule::$iBigThumbSize

Definition at line 196 of file ChBlogsModule.php.

◆ $iIconSize

ChBlogsModule::$iIconSize

Definition at line 194 of file ChBlogsModule.php.

◆ $iImgSize

ChBlogsModule::$iImgSize

Definition at line 197 of file ChBlogsModule.php.

◆ $iLastPostedPostID

ChBlogsModule::$iLastPostedPostID

Definition at line 205 of file ChBlogsModule.php.

◆ $iPostViewType

ChBlogsModule::$iPostViewType

Definition at line 207 of file ChBlogsModule.php.

◆ $iThumbSize

ChBlogsModule::$iThumbSize

Definition at line 195 of file ChBlogsModule.php.

◆ $iViewingPostID

ChBlogsModule::$iViewingPostID

Definition at line 208 of file ChBlogsModule.php.

◆ $oPrivacy

ChBlogsModule::$oPrivacy

Definition at line 214 of file ChBlogsModule.php.

◆ $sHomePath

ChBlogsModule::$sHomePath

Definition at line 212 of file ChBlogsModule.php.

◆ $sHomeUrl

ChBlogsModule::$sHomeUrl

Definition at line 211 of file ChBlogsModule.php.

◆ $sSpacerPath

ChBlogsModule::$sSpacerPath

Definition at line 203 of file ChBlogsModule.php.


The documentation for this class was generated from the following file: