📄 admineditsiteblogview.class.php
字号:
<?php lt_include( PLOG_CLASS_PATH.'class/view/admin/admintemplatedview.class.php' ); lt_include( PLOG_CLASS_PATH.'class/locale/locales.class.php' ); lt_include( PLOG_CLASS_PATH.'class/template/templatesets/templatesets.class.php' ); lt_include( PLOG_CLASS_PATH.'class/dao/blogstatus.class.php' ); lt_include( PLOG_CLASS_PATH."class/net/http/subdomains.class.php" ); lt_include( PLOG_CLASS_PATH."class/dao/blogcategories.class.php" ); /** * \ingroup View * @private * * shows the view to edit a blog from the site */ class AdminEditSiteBlogView extends AdminTemplatedView { var $_editBlogInfo; var $_error; function AdminEditSiteBlogView( $blogInfo, $editBlogInfo = null ) { // fetch information about the blog we're editing if( $editBlogInfo == null ) $this->_editBlogInfo = $this->getSessionValue( 'editBlogInfo' ); else $this->_editBlogInfo = $editBlogInfo; // this stuff is a bit weird but I couldn't find a better way to do it! if( $this->_editBlogInfo ) { $this->AdminTemplatedView( $blogInfo, 'editblog' ); $this->_error = false; $this->setSessionValue( 'editBlogInfo', $this->_editBlogInfo ); // ... // export data to the view $this->setValue( 'editblog', $this->_editBlogInfo ); $this->setValue( 'editblogsettings', $this->_editBlogInfo->getSettings()); // blog settings... $blogTemplateSet = $this->_editBlogInfo->getTemplateSet(); $this->setValue( 'blogTemplate', $blogTemplateSet->getName()); $ts = new TemplateSets(); // get the blog template sets $this->setValue( 'templates', $ts->getBlogTemplateSets( $this->_editBlogInfo->getId(), true )); // and the list of locale availables $this->setValue( 'locales', Locales::getLocales()); $this->setValue( 'blogStatus', $this->_editBlogInfo->getStatus()); $this->setValue( 'blogStatusList', BlogStatus::getStatusList()); $blogSettings = $this->_editBlogInfo->getSettings(); $this->setValue( 'blogTimeOffset', $blogSettings->getValue( 'time_offset' )); $this->setValue( 'blogOwnerInfo', $this->_editBlogInfo->getOwnerInfo()); $this->setValue( 'blogName', $this->_editBlogInfo->getBlog()); $this->setValue( 'blogLocale', $blogSettings->getValue( "locale" )); $this->setValue( 'blogResourcesQuota', $this->_editBlogInfo->getResourcesQuota()); // set the blog users and the available users $blogUsers = $this->_editBlogInfo->getUsersInfo(); $this->setValue( 'blogusers', $blogUsers ); // only do blog_domain stuff if subdomains are enabled // Don't waste time here, as well as be less confusing by // not showing the option to users who can't use it if( Subdomains::getSubdomainsEnabled()) { $domain = $this->_editBlogInfo->getCustomDomain(); $available_domains = Subdomains::getAvailableDomains(); // default to any domain, this will be overwritten // if the domain is found in the available_domains array $subdomain = $domain; $maindomain = "?"; foreach($available_domains as $avdomain){ // search to see if domain suffix is on // the available_domain list. $found = strpos($domain, $avdomain); if($found !== FALSE && $found == (strlen($domain) - strlen($avdomain))){ $subdomain = substr($domain, 0, $found-1); $maindomain = $avdomain; break; } } // pass the domain information to the view $this->setValue( "blogSubDomain", $subdomain ); $this->setValue( "blogMainDomain", $maindomain ); $this->setValue( "blogAvailableDomains", $available_domains ); $this->setValue( "blogDomainsEnabled", 1 ); } } else { $this->AdminTemplatedView( $blogInfo, 'error' ); $this->setValue( 'message', 'Unexpected error loading blog!' ); $this->_error = true; } } /** * Removes all the users in blogUsers from siteUsers and * returns the new array. * * @static */ function filterAvailableUsers( $siteUsers, $blogUsers ) { $resultArray = Array(); // not the cleanest and fastest solution in the world, tho :( $found = false; foreach( $siteUsers as $siteUser ) { foreach( $blogUsers as $blogUser ) { if( $blogUser->getId() == $siteUser->getId()) { $found = true; break; } else $found = false; } if( !$found ) { array_push( $resultArray, $siteUser ); $found = false; } } return $resultArray; } }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -