本文整理汇总了C++中PHPConfigurationData::SetPhpExe方法的典型用法代码示例。如果您正苦于以下问题:C++ PHPConfigurationData::SetPhpExe方法的具体用法?C++ PHPConfigurationData::SetPhpExe怎么用?C++ PHPConfigurationData::SetPhpExe使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPConfigurationData
的用法示例。
在下文中一共展示了PHPConfigurationData::SetPhpExe方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: FinalizeStartup
void PhpPlugin::FinalizeStartup()
{
// Create the debugger windows (hidden)
wxWindow* parent = m_mgr->GetDockingManager()->GetManagedWindow();
m_debuggerPane = new PHPDebugPane(parent);
m_mgr->GetDockingManager()->AddPane(m_debuggerPane,
wxAuiPaneInfo()
.Name("XDebug")
.Caption("Call Stack & Breakpoints")
.Hide()
.CloseButton()
.MaximizeButton()
.Bottom()
.Position(3));
m_xdebugLocalsView = new LocalsView(parent);
m_mgr->GetDockingManager()->AddPane(
m_xdebugLocalsView,
wxAuiPaneInfo().Name("XDebugLocals").Caption("Locals").Hide().CloseButton().MaximizeButton().Bottom());
m_xdebugEvalPane = new EvalPane(parent);
m_mgr->GetDockingManager()->AddPane(
m_xdebugEvalPane,
wxAuiPaneInfo().Name("XDebugEval").Caption("PHP").Hide().CloseButton().MaximizeButton().Bottom().Position(2));
// Check to see if the have a PHP executable setup
// if not - update it
PHPConfigurationData data;
data.Load();
PHPLocator locator;
if(locator.Locate()) {
// update a PHP executable in the settings
if(data.GetPhpExe().IsEmpty()) {
data.SetPhpExe(locator.GetPhpExe().GetFullPath());
}
data.Save();
}
}