本文整理匯總了PHP中Bundle::disable方法的典型用法代碼示例。如果您正苦於以下問題:PHP Bundle::disable方法的具體用法?PHP Bundle::disable怎麽用?PHP Bundle::disable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Bundle
的用法示例。
在下文中一共展示了Bundle::disable方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __destruct
public function __destruct()
{
Bundle::disable('email');
Bundle::disable('settings');
Bundle::disable('modules');
Bundle::disable('navigation');
}
示例2: __destruct
public function __destruct()
{
Bundle::disable('settings');
}
示例3: publish
public static function publish($module_slug)
{
require path('sys') . 'cli' . DS . 'dependencies' . EXT;
try {
$module_assets_path = path('bundle') . $module_slug . DS . 'public' . DS;
if (\File::exists($module_assets_path)) {
\Bundle::register($module_slug);
$publish_cmd = \Laravel\CLI\Command::run(array('bundle:publish', $module_slug));
\Bundle::disable($module_slug);
return true;
}
return true;
} catch (\Exception $e) {
Log::error($e->getMessage());
Log::error('Failed to publish assets for module [' . $module_slug . '].');
return false;
}
}
示例4: __destruct
public function __destruct()
{
Bundle::disable('themes');
Bundle::disable('settings');
Bundle::disable('modules');
}