本文整理汇总了PHP中PartKeepr\PartKeepr::initialize方法的典型用法代码示例。如果您正苦于以下问题:PHP PartKeepr::initialize方法的具体用法?PHP PartKeepr::initialize怎么用?PHP PartKeepr::initialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PartKeepr\PartKeepr
的用法示例。
在下文中一共展示了PartKeepr::initialize方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initializeEnvironment
/**
* Initializes a bootstrapped PartKeepr environment.
*
* This is done within a function because we don't want to pollute the globals, which would give the following message
* during unit tests:
*
* "PDOException: You cannot serialize or unserialize PDO instances"
*/
function initializeEnvironment()
{
PartKeepr::initialize("test");
$tool = new \Doctrine\ORM\Tools\SchemaTool(PartKeepr::getEM());
$classes = PartKeepr::getClassMetaData();
$tool->dropDatabase();
$tool->createSchema($classes);
/* Some very basic installation things */
PartCategoryManager::getInstance()->ensureRootExists();
/* Create a blank admin user */
$user = new User();
$user->setUsername("admin");
$user->setPassword("admin");
$user->setAdmin(true);
PartKeepr::getEM()->persist($user);
/* Create a blank regular user */
$user2 = new User();
$user2->setUsername("regular");
$user2->setPassword("regular");
$user2->setAdmin(false);
PartKeepr::getEM()->persist($user2);
PartKeepr::getEM()->flush();
}
示例2:
<?php
/**
* This is a script which updates all category path caches to the configured path separator.
*
* This script needs to be called after changing the partkeepr.category.path_separator.
*/
namespace PartKeepr\Scripts;
use PartKeepr\PartKeepr, PartKeepr\PartCategory\PartCategoryManager, PartKeepr\Util\Configuration, PartKeepr\FootprintCategory\FootprintCategoryManager;
include "../src/backend/PartKeepr/PartKeepr.php";
PartKeepr::initialize();
PartCategoryManager::getInstance()->updateCategoryPaths(PartCategoryManager::getInstance()->getRootNode());
FootprintCategoryManager::getInstance()->updateCategoryPaths(FootprintCategoryManager::getInstance()->getRootNode());
PartKeepr::getEM()->flush();
echo "All categories are updated for the configured category seperator of ";
echo Configuration::getOption("partkeepr.category.path_separator") . "\n";
示例3: file_get_contents
<?php
namespace PartKeepr\Frontend;
use PartKeepr\PartKeepr, PartKeepr\Util\Configuration;
include "../src/backend/PartKeepr/PartKeepr.php";
header("Content-Type: text/xml; charset=UTF-8");
PartKeepr::initialize("");
echo file_get_contents(Configuration::getOption("partkeepr.files.path") . "/feed.rss");