本文整理汇总了PHP中zbase函数的典型用法代码示例。如果您正苦于以下问题:PHP zbase函数的具体用法?PHP zbase怎么用?PHP zbase使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了zbase函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: handle
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
zbase()->setConsoleCommand($this);
$phpCommand = env('ZBASE_PHP_COMMAND', 'php');
$packages = zbase()->packages();
if (!empty($packages)) {
foreach ($packages as $packageName) {
$zbase = zbase_package($packageName);
if ($zbase instanceof Interfaces\TestCommandInterface) {
$this->info($this->signature . '.pre - ' . $packageName);
$zbase->testCommand($phpCommand, ['test.pre' => true, 'command' => $this]);
}
}
}
$commands = [];
if (!empty($commands)) {
foreach ($commands as $command) {
if ($command instanceof \Closure) {
$command();
}
}
}
zbase_package('zbase')->testCommand($phpCommand, ['test.post' => true, 'command' => $this]);
if (!empty($packages)) {
foreach ($packages as $packageName) {
$zbase = zbase_package($packageName);
if ($zbase instanceof Interfaces\TestCommandInterface) {
$this->info($this->signature . '.post - ' . $packageName);
$zbase->testCommand($phpCommand, ['test.post' => true, 'command' => $this]);
}
}
}
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:38,代码来源:Test.php
示例2: testModuleRoute
/**
* Added module can be added dynamically to route
* and can be accessed
* @group Modules
*/
function testModuleRoute()
{
$modules = zbase()->modules();
foreach ($modules as $module) {
$this->assertTrue(zbase()->module($module->id()) instanceof \Zbase\Module\ModuleInterface);
}
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:12,代码来源:ModuleTest.php
示例3: register
public function register()
{
$this->app->singleton(zivsluck_tag(), function () {
return new Zivsluck();
});
zbase()->addPackage(zivsluck_tag());
}
开发者ID:dennesabing,项目名称:zivsluck,代码行数:7,代码来源:LaravelServiceProvider.php
示例4: handle
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
zbase()->setConsoleCommand($this);
$phpCommand = env('ZBASE_PHP_COMMAND', 'php');
$packages = zbase()->packages();
if (!empty($packages)) {
foreach ($packages as $packageName) {
$zbase = zbase_package($packageName);
if ($zbase instanceof Interfaces\AssetsCommandInterface) {
$this->info($this->signature . '.pre - ' . $packageName);
$zbase->assetsCommand($phpCommand, ['assets.pre' => true, 'command' => $this]);
}
}
}
echo shell_exec($phpCommand . ' artisan vendor:publish --tag=public --force');
$commands = [];
if (!empty($commands)) {
foreach ($commands as $command) {
if ($command instanceof \Closure) {
$command();
} else {
echo shell_exec($phpCommand . ' artisan ' . $command);
}
}
}
if (!empty($packages)) {
foreach ($packages as $packageName) {
$zbase = zbase_package($packageName);
if ($zbase instanceof Interfaces\AssetsCommandInterface) {
$this->info($this->signature . '.post - ' . $packageName);
$zbase->assetsCommand($phpCommand, ['assets.post' => true, 'command' => $this]);
}
}
}
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:40,代码来源:Assets.php
示例5: register
public function register()
{
$this->app->singleton(packagename_tag(), function () {
return new Packagename();
});
zbase()->addPackage(packagename_tag());
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:7,代码来源:LaravelServiceProvider.php
示例6: form
/**
* Used only for testing
* @return view
*/
public function form()
{
if ($this->isPost()) {
$validatorMessages = ['email.required' => _zt('Email Address is required.'), 'email.email' => _zt('Invalid email address.')];
$valid = $this->validateInputs(zbase()->request()->inputs(), ['email' => 'required|email'], $validatorMessages);
if (!empty($valid)) {
$this->message('success', _zt('Successfull!'));
}
}
return $this->view('form');
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:15,代码来源:PageController.php
示例7: handle
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
zbase_maintenance_set();
zbase()->setConsoleCommand($this);
$phpCommand = env('ZBASE_PHP_COMMAND', 'php');
$packages = zbase()->packages();
if (!empty($packages)) {
foreach ($packages as $packageName) {
$zbase = zbase_package($packageName);
if ($zbase instanceof Interfaces\MigrateCommandInterface) {
$this->info($this->signature . '.pre - ' . $packageName);
$zbase->migrateCommand($phpCommand, ['migrate.pre' => true, 'command' => $this]);
}
}
}
\File::cleanDirectory(database_path() . '/migrations');
\File::cleanDirectory(database_path() . '/seeds');
\File::cleanDirectory(database_path() . '/factories');
\File::cleanDirectory(storage_path() . '/zbase');
\File::cleanDirectory(storage_path() . '/framework/cache');
\File::cleanDirectory(storage_path() . '/framework/views');
\File::cleanDirectory(storage_path() . '/logs');
echo shell_exec($phpCommand . ' artisan vendor:publish --tag=migrations --force');
echo shell_exec($phpCommand . ' artisan optimize');
echo shell_exec($phpCommand . ' artisan migrate:refresh --seed --force');
$commands = [];
// zbase()->commands('migrate');
if (!empty($commands)) {
foreach ($commands as $command) {
if ($command instanceof \Closure) {
$command();
} else {
echo shell_exec($phpCommand . ' artisan ' . $command);
}
}
}
if (!empty($packages)) {
foreach ($packages as $packageName) {
$zbase = zbase_package($packageName);
if ($zbase instanceof Interfaces\MigrateCommandInterface) {
$this->info($this->signature . '.post - ' . $packageName);
$zbase->migrateCommand($phpCommand, ['migrate.post' => true, 'command' => $this]);
}
}
}
zbase_maintenance_unset();
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:52,代码来源:Migrate.php
示例8: zbase_module_widget_contents
/**
* Return contents for a certain module and widget
*
* @param string $module The module that is asking for content
* @param string $widget The widget that is asking for content
* @param string $section The current section [default: front] front|back
* @param boolean $adminView IF for admin [default: false]
* @param string $key key to search
* @param array $contents Some contents
* @return array
*/
function zbase_module_widget_contents($module, $widget, $section = 'front', $adminView = false, $key = null, $contents = [])
{
$modules = zbase()->modules();
foreach ($modules as $mod) {
$widgetContent = $mod->widgetContents($widget, $module, $section, $adminView, $key);
if (!empty($widgetContent)) {
foreach ($widgetContent as $index => $content) {
$contents[] = $content;
}
}
}
if (!empty($contents)) {
return zbase_collection($contents)->sortByDesc(function ($itm) {
return !empty($itm['position']) ? $itm['position'] : 0;
})->toArray();
}
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:28,代码来源:module.php
示例9: handle
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
zbase()->setConsoleCommand($this);
$phpCommand = env('ZBASE_PHP_COMMAND', 'php');
$packages = zbase()->packages();
if (!empty($packages)) {
foreach ($packages as $packageName) {
$zbase = zbase_package($packageName);
if ($zbase instanceof Interfaces\ClearCommandInterface) {
$this->info($this->signature . '.pre - ' . $packageName);
$zbase->clearCommand($phpCommand, ['clear.pre' => true, 'command' => $this]);
}
}
}
echo shell_exec($phpCommand . ' artisan clear-compiled');
echo shell_exec($phpCommand . ' artisan cache:clear');
echo shell_exec($phpCommand . ' artisan view:clear');
echo shell_exec($phpCommand . ' artisan config:clear');
echo shell_exec($phpCommand . ' artisan route:clear');
\File::cleanDirectory(zbase_storage_path('tmp/images'));
\File::cleanDirectory(zbase_storage_path(zbase_tag() . '_tmp/images'));
$commands = [];
// zbase()->commands('clear');
if (!empty($commands)) {
foreach ($commands as $command) {
if ($command instanceof \Closure) {
$command();
} else {
echo shell_exec($phpCommand . ' artisan ' . $command);
}
}
}
if (!empty($packages)) {
foreach ($packages as $packageName) {
$zbase = zbase_package($packageName);
if ($zbase instanceof Interfaces\ClearCommandInterface) {
$this->info($this->signature . '.post - ' . $packageName);
$zbase->clearCommand($phpCommand, ['clear.post' => true, 'command' => $this]);
}
}
}
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:47,代码来源:Clear.php
示例10: _postEvent
/**
* Event after Action
* @param string $action
* @param string $url The Default URL to redirect
*/
protected function _postEvent($action)
{
if ($this->isPublic() && $this->isNode() && $this->isCreating()) {
return zbase_redirect()->to($this->entity()->alphaUrl());
}
$isAjax = zbase_request_is_ajax();
$requestMethod = strtolower(zbase_request_method());
if ($isAjax) {
if ($requestMethod == 'post') {
$e = $this->_v('event.' . zbase_section() . '.' . $action . '.post-json.post', $this->_v('event.' . $action . '.post-json'));
} else {
$e = $this->_v('event.' . zbase_section() . '.' . $action . '.post-json', $this->_v('event.' . zbase_section() . '.' . $action . '.post'));
}
} else {
if ($requestMethod == 'post') {
$e = $this->_v('event.' . zbase_section() . '.' . $action . '.post.post', $this->_v('event.' . $action . '.post.post', null));
} else {
$e = $this->_v('event.' . zbase_section() . '.' . $action . '.post', $this->_v('event.' . $action . '.post', null));
}
}
if (is_null($e)) {
if (zbase_is_back()) {
if ($this->isCreating()) {
$action = 'update';
}
$byAlphaId = $this->_v('entity.repo.byAlphaId.route', false);
if ($this->entityIsPostInterface($this->entity())) {
if (!empty($byAlphaId)) {
$params = ['action' => $action, 'id' => $this->entity()->postAlphaId()];
} else {
$params = ['action' => $action, 'id' => $this->entity()->postId()];
}
} else {
if (!empty($byAlphaId)) {
$params = ['action' => $action, 'id' => $this->entity()->alphaId()];
} else {
$params = ['action' => $action, 'id' => $this->entity()->id()];
}
}
} else {
$params = ['action' => $action, 'id' => $this->entity()->alphaId()];
}
if ($action == 'delete') {
$params = [];
}
$url = $this->getModule()->url(zbase_section(), $params);
if ($action == 'restore' || $action == 'ddelete') {
$url = zbase_url_previous();
}
}
if (!empty($e)) {
if (!empty($e['data'])) {
if ($isAjax) {
zbase()->json()->addVariables($e['data']);
}
}
if (!empty($e['route'])) {
$params = zbase_route_inputs();
if (!empty($e['route']['params'])) {
$params = array_merge($params, $e['route']['params']);
}
if (zbase_is_back()) {
$byAlphaId = $this->_v('entity.repo.byAlphaId.route', false);
if (!empty($byAlphaId)) {
$params['id'] = $this->entity()->alphaId();
} else {
$params['id'] = $this->entity()->id();
}
}
if ($action == 'ddelete') {
if (isset($params['id']) && isset($params['action'])) {
unset($params['id']);
unset($params['action']);
}
}
$e['route']['params'] = $params;
$url = zbase_url_from_config($e);
}
$toUrl = zbase_value_get($e, 'url', false);
if (!empty($toUrl)) {
$url = $toUrl;
}
}
$enableRedirect = $this->_v('event.' . zbase_section() . '.' . $action . '.post.redirect.enable', $this->_v('event.' . $action . '.post.redirect.enable', true));
if (!empty($url) && !empty($enableRedirect)) {
return zbase_redirect()->to($url);
}
return true;
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:94,代码来源:Form.php
示例11: zbase
* Dx
*
* @link http://dennesabing.com
* @author Dennes B Abing <[email protected]>
* @license proprietary
* @copyright Copyright (c) 2015 ClaremontDesign/MadLabs-Dx
* @version 0.0.0.1
* @since Aug 22, 2016 8:29:03 PM
* @file maintenance-notice.blade.php
* @project Zbase
* @package Expression package is undefined on line 14, column 15 in Templates/Scripting/EmptyPHP.php.
*/
if (zbase()->system()->hasScheduledDowntime() && !zbase()->system()->inMaintenance()) {
?>
<?php
$details = zbase()->system()->scheduledDowntimeDetails();
?>
<div class="alert alert-warning">
<h3>Temporary Downtime Notice.</h3>
<p>
<?php
$message = null;
if (!empty($details['maintenance-message'])) {
$message = $details['maintenance-message'];
}
if (!empty($details['start-datetime'])) {
$startTime = zbase_date_from_format('Y-m-d H:i:s', $details['start-datetime']);
$endTime = zbase_date_from_format('Y-m-d H:i:s', $details['end-datetime']);
echo str_replace(array('{START_TIME}', '{END_TIME}'), array('<strong>' . $startTime->format('F d, Y h:i A') . '</strong>', '<strong>' . $endTime->format('F d, Y h:i A') . '</strong>'), nl2br($message));
}
?>
开发者ID:claremontdesign,项目名称:zbase,代码行数:31,代码来源:maintenance-notice.blade.php
示例12: findUserByEmail
/**
* User By Email
* @param string $email
* @return object|array
*/
public static function findUserByEmail($email, $object = false)
{
if (is_array($email) && !empty($email['email'])) {
$email = $email['email'];
}
if (!empty($email)) {
$entity = zbase()->entity('user', [], true);
return ['user' => self::userApi($entity->repo()->by('email', $email)->first())];
}
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:15,代码来源:Api.php
示例13: zbase
<!DOCTYPE html>
<html>
<head>
<title>@yield('title')<?php
echo zbase()->view()->pageTitle();
?>
</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
background-color: #eee;
}
body, h1, p {
font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
margin: 0;
padding: 0;
text-align: center;
}
.container {
margin-left: auto;
margin-right: auto;
margin-top: 177px;
max-width: 1170px;
padding-right: 15px;
padding-left: 15px;
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:30,代码来源:static.blade.php
示例14: factory
/**
* Element Factory
* @param array $configuration
* @return \Zbase\Ui\Form\Element
*/
public static function factory($configuration)
{
/**
* Load a widget
*/
if (!empty($configuration['widget'])) {
if (!empty($configuration['validations'])) {
$widget = zbase()->widget($configuration['widget'], [], true)->setAttribute('validations', $configuration['validations']);
} else {
$widget = zbase()->widget($configuration['widget'], [], true);
}
return $widget;
}
if (!empty($configuration['ui'])) {
$ui = \Zbase\Ui\Ui::factory($configuration['ui']);
if ($ui->enabled()) {
return $ui;
}
return null;
}
$type = !empty($configuration['type']) ? $configuration['type'] : 'text';
$id = !empty($configuration['id']) ? $configuration['id'] : null;
if (is_null($id)) {
throw new Exceptions\ConfigNotFoundException('Index:id is not set on Form Element Factory');
}
if (!empty($type)) {
$className = zbase_model_name(null, 'class.ui.form.type.' . strtolower($type), '\\Zbase\\Ui\\Form\\Type\\' . ucfirst($type));
$element = new $className($configuration);
if ($element->enabled()) {
$element->prepare();
return $element;
}
}
return null;
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:40,代码来源:Element.php
示例15: function
<?php
/**
* Dx
*
* @link http://dennesabing.com
* @author Dennes B Abing <[email protected]>
* @license proprietary
* @copyright Copyright (c) 2015 ClaremontDesign/MadLabs-Dx
* @version 0.0.0.1
* @since Mar 8, 2016 10:37:59 AM
* @file widget.php
* @project Expression project.name is undefined on line 13, column 15 in Templates/Scripting/EmptyPHP.php.
* @package Expression package is undefined on line 14, column 15 in Templates/Scripting/EmptyPHP.php.
*
*/
return ['type' => 'form', 'enable' => true, 'config' => ['access' => 'only::sudo', 'values' => ['default' => ['enable' => true, 'array' => function () {
return zbase()->telegram()->settings();
}]], 'entity' => null, 'elements' => ['status' => ['type' => 'select', 'id' => 'status', 'label' => 'Status', 'multiOptions' => 'enableDisable', 'help' => ['text' => 'Disable telegram messaging.']], 'botusername' => ['type' => 'text', 'id' => 'botusername', 'label' => 'Bot Name', 'html' => ['attributes' => ['input' => ['placeholder' => 'Bot Username']]]], 'bottoken' => ['type' => 'text', 'id' => 'bottoken', 'label' => 'Bot Token', 'html' => ['attributes' => ['input' => ['placeholder' => 'Bot Token']]]], 'webhook' => ['type' => 'text', 'id' => 'webhook', 'label' => 'WebHook (Optional)', 'html' => ['attributes' => ['input' => ['value' => function () {
$token = zbase()->telegram()->token();
if (!empty($token)) {
return zbase_url_from_route('telegramhook', ['token' => $token]);
}
}, 'placeholder' => 'Webhook']]]], 'testmessage' => ['type' => 'select', 'id' => 'testmessage', 'label' => 'Send Test Message', 'multiOptions' => 'yesNo', 'help' => ['text' => 'Will send test message to Dennes.']]]]];
开发者ID:claremontdesign,项目名称:zbase,代码行数:24,代码来源:telegram-settings-form.php
示例16: zbase_response_format
/**
* Retur the response format
* @return string
*/
function zbase_response_format()
{
return zbase()->getResponseFormat();
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:8,代码来源:response.php
示例17: api
public function api()
{
$validation = $this->validateApi();
if (!$validation) {
$this->returns['message'] = 'Validation error. Kindly check error messages.';
$this->returns['errors'] = $this->apiErrors;
} else {
$objectClass = $this->apiConfiguration['class'];
$objectClassMethod = $this->apiConfiguration['method'];
$objectResult = $objectClass::$objectClassMethod($this->params);
/**
* Entity
*/
if ($objectResult instanceof \Zbase\Interfaces\EntityInterface) {
$this->returns['result'] = $objectResult->toArray();
}
/**
* Array
*/
if (is_array($objectResult)) {
$this->returns['result'] = $objectResult;
}
}
$this->returns['parameters'] = $this->params;
zbase()->json()->setVariable('api', $this->returns);
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:26,代码来源:Api.php
示例18: postFileDelete
/**
* Delete/Remove File
* @param object|array $file
*
* return boolean
*/
public function postFileDelete($file)
{
if (method_exists($this, 'fileDelete')) {
return $this->fileDelete($file);
}
try {
$file = (object) $file;
if (file_exists($this->postFileUploadFolder() . $file->filename)) {
zbase_db_transaction_start();
$files = $this->postFiles();
$i = 0;
foreach ($files as $f) {
if ($f['filename'] == $file->filename) {
unset($files[$i]);
unlink($this->postFileUploadFolder() . $file->filename);
break;
}
$i++;
}
$this->postSetOption('_files', $files);
$this->save();
zbase()->json()->addVariable('post_file_deleted', 1);
zbase_db_transaction_commit();
return true;
}
} catch (\Zbase\Exceptions\RuntimeException $e) {
zbase_db_transaction_rollback();
zbase_exception_throw($e);
return false;
}
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:37,代码来源:Post.php
示例19: zbase_view_render
<?php
/**
* Dx
*
* @link http://dennesabing.com
* @author Dennes B Abing <[email protected]>
* @license proprietary
* @copyright Copyright (c) 2015 ClaremontDesign/MadLabs-Dx
* @version 0.0.0.1
* @since Aug 23, 2016 6:00:01 PM
* @file notifications.blade.php
* @project Zbase
* @package Expression package is undefined on line 14, column 15 in Templates/Scripting/EmptyPHP.php.
*/
if (zbase()->telegram()->isEnabled() && zbase_config_get('modules.account.widgets.account.tab.telegram', true)) {
?>
<?php
echo zbase_view_render(zbase_view_file_module('account.views.telegram-user', 'account', 'zbase'), ['user' => zbase_auth_user()]);
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:20,代码来源:notifications.blade.php
示例20: zbase_view_render_body
/**
* Render HTML before </body>
*
* @return string
*/
function zbase_view_render_body()
{
$str = '';
zbase()->view()->prepare();
$onloadScripts = zbase_view_placeholder_render('body_scripts_onload');
$str .= zbase_view_placeholder_render('body_javascripts');
$str .= zbase_view_placeholder_render('body_footer_html');
$str .= EOF . '<script type="text/javascript">';
$str .= EOF . zbase_view_compile(zbase_view_placeholder_render('body_scripts'));
if (!empty(zbase_auth_is_duplex())) {
$onloadScripts .= 'jQuery(\'body\').append(\'<div style="margin:0px auto;z-index:999999;background:yellow;width: auto;position:absolute;top:0px;padding:5px;margin-top:2px;margin-left:2px;">You are loggedin as: ' . zbase_auth_user()->displayFullDetails() . ' <a class="btn btn-danger btn-sm" href="' . zbase_url_from_route('admin.duplex', ['action' => 'unduplex']) . '">SignOut</a></div>\');';
}
if (!empty($onloadScripts)) {
$str .= EOF . 'jQuery(document).ready(function(){' . EOF . $onloadScripts . EOF . '});';
}
$str .= EOF . '</script>';
return $str;
}
开发者ID:claremontdesign,项目名称:zbase,代码行数:23,代码来源:view.php
注:本文中的zbase函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论