本文整理匯總了PHP中Zend_Tool_Project_Profile::getIterator方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Tool_Project_Profile::getIterator方法的具體用法?PHP Zend_Tool_Project_Profile::getIterator怎麽用?PHP Zend_Tool_Project_Profile::getIterator使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Tool_Project_Profile
的用法示例。
在下文中一共展示了Zend_Tool_Project_Profile::getIterator方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: create
/**
* create()
*
* @param string $path
*/
public function create($path)
{
if ($path == null) {
$path = getcwd();
} else {
$path = trim($path);
if (!file_exists($path)) {
$created = mkdir($path);
if (!$created) {
require_once 'Zend/Tool/Framework/Client/Exception.php';
throw new Zend_Tool_Framework_Client_Exception('Could not create requested project directory \'' . $path . '\'');
}
}
$path = str_replace('\\', '/', realpath($path));
}
$profile = $this->_loadProfile(self::NO_PROFILE_RETURN_FALSE, $path);
if ($profile !== false) {
require_once 'Zend/Tool/Framework/Client/Exception.php';
throw new Zend_Tool_Framework_Client_Exception('A project already exists here');
}
$newProfile = new Zend_Tool_Project_Profile(array('projectDirectory' => $path, 'profileData' => $this->_getDefaultProfile()));
$newProfile->loadFromData();
$this->_registry->getResponse()->appendContent('Creating project at ' . $path);
foreach ($newProfile->getIterator() as $resource) {
$resource->create();
}
}
示例2: testProfileCanDelete
public function testProfileCanDelete()
{
$this->_standardProfileFromData->loadFromData();
foreach ($this->_standardProfileFromData->getIterator() as $resource) {
$resource->getContext()->create();
}
$this->assertTrue(file_exists($this->_projectDirectory . 'public/index.php'));
$publicIndexFile = $this->_standardProfileFromData->search('publicIndexFile');
$publicIndexFile->getContext()->delete();
$this->assertFalse(file_exists($this->_projectDirectory . 'public/index.php'));
$appConfigFile = $this->_standardProfileFromData->search('applicationConfigFile');
$appConfigFile->getContext()->delete();
$configsDirectory = $this->_standardProfileFromData->search('configsDirectory');
$configsDirectory->getContext()->delete();
$this->assertFalse(file_exists($this->_projectDirectory . 'application/configs'));
}
示例3: create
/**
* create()
*
* @param string $path
* @param string $nameOfProfile shortName=n
* @param string $fileOfProfile shortName=f
*/
public function create($path, $nameOfProfile = null, $fileOfProfile = null)
{
if ($path == null) {
$path = getcwd();
} else {
$path = trim($path);
if (!file_exists($path)) {
$created = mkdir($path);
if (!$created) {
require_once 'Zend/Tool/Framework/Client/Exception.php';
throw new Zend_Tool_Framework_Client_Exception('Could not create requested project directory \'' . $path . '\'');
}
}
$path = str_replace('\\', '/', realpath($path));
}
$profile = $this->_loadProfile(self::NO_PROFILE_RETURN_FALSE, $path);
if ($profile !== false) {
require_once 'Zend/Tool/Framework/Client/Exception.php';
throw new Zend_Tool_Framework_Client_Exception('A project already exists here');
}
$profileData = null;
if ($fileOfProfile != null && file_exists($fileOfProfile)) {
$profileData = file_get_contents($fileOfProfile);
}
$storage = $this->_registry->getStorage();
if ($profileData == '' && $nameOfProfile != null && $storage->isEnabled()) {
$profileData = $storage->get('project/profiles/' . $nameOfProfile . '.xml');
}
if ($profileData == '') {
$profileData = $this->_getDefaultProfile();
}
$newProfile = new Zend_Tool_Project_Profile(array('projectDirectory' => $path, 'profileData' => $profileData));
$newProfile->loadFromData();
$response = $this->_registry->getResponse();
$response->appendContent('Creating project at ' . $path);
$response->appendContent('Note: ', array('separator' => false, 'color' => 'yellow'));
$response->appendContent('This command created a web project, ' . 'for more information setting up your VHOST, please see docs/README');
if (!Zend_Tool_Project_Provider_Test::isPHPUnitAvailable()) {
$response->appendContent('Testing Note: ', array('separator' => false, 'color' => 'yellow'));
$response->appendContent('PHPUnit was not found in your include_path, therefore no testing actions will be created.');
}
foreach ($newProfile->getIterator() as $resource) {
$resource->create();
}
}