当前位置: 首页>>代码示例>>PHP>>正文


PHP R::isoDateTime方法代码示例

本文整理汇总了PHP中RedBeanPHP\R::isoDateTime方法的典型用法代码示例。如果您正苦于以下问题:PHP R::isoDateTime方法的具体用法?PHP R::isoDateTime怎么用?PHP R::isoDateTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在RedBeanPHP\R的用法示例。


在下文中一共展示了R::isoDateTime方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: newBean

 public function newBean()
 {
     if ($this->bean !== null) {
         return $this->bean;
     }
     $bean = R::dispense('skemafield');
     $bean->name = $this->name;
     $bean->cleanName = $this->cleanName;
     $bean->created = R::isoDateTime();
     $bean->type = get_class($this);
     $bean->prerequisite = $this->prerequisite;
     return $this->bean = $bean;
 }
开发者ID:skema,项目名称:skema,代码行数:13,代码来源:Base.php

示例2: replace

 public function replace($content = '')
 {
     if (empty($this->name)) {
         throw new Exception('Page needs name before it can be saved');
     }
     $userBean = Enpowi\App::user()->bean();
     R::exec('UPDATE page SET is_revision = 1 WHERE name = ? and is_revision = 0', [$this->name]);
     $oldBean = $this->_bean;
     $originalUserBean = $userBean;
     //TODO: ensure createdBy is set once and contributors is an incremental list
     $bean = R::dispense('page');
     $bean->name = $this->name;
     $bean->content = $content;
     $bean->created = R::isoDateTime();
     $bean->user = $originalUserBean;
     $bean->isRevision = false;
     if ($oldBean !== null) {
         $bean->sharedUser = $oldBean->sharedUser;
     }
     $bean->sharedUser[] = $userBean;
     R::store($bean);
     return new Page($this->name, $bean);
 }
开发者ID:Koohiisan,项目名称:Enpowi,代码行数:23,代码来源:Page.php

示例3: create

 public static function create($name, $description)
 {
     $bean = R::dispense('gallery');
     $bean->userId = App::user()->id;
     $bean->created = R::isoDateTime();
     $gallery = new Gallery(null, $bean);
     return $gallery->setName($name)->setDescription($description)->save();
 }
开发者ID:enpowi,项目名称:enpowi,代码行数:8,代码来源:Gallery.php

示例4: replace

 public function replace($content = '', $updateCache = true)
 {
     if (empty($this->name)) {
         throw new Exception('Blog post needs name before it can be saved');
     }
     $bean = $this->_bean;
     if ($bean === null) {
         $this->_bean = $bean = R::dispense('blog');
     }
     $bean->name = $this->name;
     $this->content = $bean->content = $content;
     $bean->edited = R::isoDateTime();
     $bean->created = $this->created ?: R::isoDateTime();
     $otherUserBean = App::user()->bean();
     $bean->user = $this->_user !== null ? $this->_user->bean() : $otherUserBean;
     $this->contributorIds[] = $otherUserBean->getID();
     $this->contributorIds = array_unique($this->contributorIds);
     $bean->contributorIds = implode(',', $this->contributorIds);
     if (!empty($this->publishedOn)) {
         $bean->publishedOn = R::isoDateTime($this->publishedOn);
     } else {
         $bean->publishedOn = null;
     }
     if ($updateCache) {
         if (Event\Blog\Cache::length() > 0) {
             Event\Blog\Cache::pub($this);
         } else {
             $this->cache = $rendered = $this->render();
             $allowedTags = join('><', self::$cacheShortAllowedTagNames);
             if (strlen($allowedTags) > 0) {
                 $allowedTags = '<' . $allowedTags . '>';
             } else {
                 $allowedTags = null;
             }
             $noTagsDirty = strip_tags($rendered, $allowedTags);
             $noTags = preg_replace('!\\s+!', ' ', $noTagsDirty);
             if (strlen($noTags) > self::$cacheShortLimit) {
                 $noTags = substr($noTags, 0, self::$cacheShortLimit) . '...';
             }
             $this->cacheShort = $noTags;
         }
         $bean->cache = $this->cache;
         $bean->cacheShort = $this->cacheShort;
     }
     $id = R::store($bean);
     Event\Blog\Replace::pub($this);
     return $id;
 }
开发者ID:enpowi,项目名称:enpowi,代码行数:48,代码来源:Post.php

示例5: canValidate

 public function canValidate()
 {
     return R::isoDateTime() - 60 * 60 * 24 < $this->_bean->validationDate;
 }
开发者ID:enpowi,项目名称:enpowi,代码行数:4,代码来源:User.php

示例6: save

 public function save()
 {
     $bean = $this->_bean;
     if ($bean === null) {
         $bean = $this->_bean = R::dispense('file');
         $bean->userId = App::get()->user()->id;
     }
     $bean->classType = $this->classType;
     $bean->date = R::isoDateTime();
     $bean->description = $this->description;
     $bean->name = $this->name;
     $bean->tags = $this->tags;
     $bean->hash = $this->hash;
     return $this->id = R::store($bean);
 }
开发者ID:Koohiisan,项目名称:Enpowi,代码行数:15,代码来源:File.php

示例7: logError

 public static function logError($detail = '')
 {
     $bean = R::dispense('error');
     $bean->email = self::user()->email;
     $bean->ip = self::getApi()->request->getIp();
     $bean->time = R::isoDateTime();
     $bean->detail = $detail;
     R::store($bean);
 }
开发者ID:Koohiisan,项目名称:Enpowi,代码行数:9,代码来源:App.php

示例8: softTrash

 public function softTrash($bean)
 {
     $bean = $this->getBean($bean);
     $bean->deleted_at = R::isoDateTime();
     return R::store($bean);
 }
开发者ID:MhmdLab,项目名称:redbean-slim,代码行数:6,代码来源:BeanRepository.php

示例9: Json

    return new Json($post->export());
}, 'POST')->route('edit-post', '/posts/:id', function ($id) use($auth) {
    $auth->authenticate();
    $post = R::load('post', $id);
    if ($post->id != $id) {
        return new HttpStatus(HttpStatus::STATUS_204_NO_CONTENT);
    }
    $request = HttpContext::get()->getRequest();
    if ($request->hasPost('post')) {
        $post->title = $request->getPost('post', 'title');
        $post->summary = $request->getPost('post', 'summary');
        $post->isactive = $request->getPost('post', 'isactive');
        $post->content = $request->getPost('post', 'content');
        $post->controller = $request->getPost('post', 'controller');
        $post->slug = $request->getPost('post', 'slug');
        $post->changed = R::isoDateTime(time());
        // store tags
        $tags = $request->getPost('post', 'tags');
        foreach ($tags as $tag) {
            $rbTag = R::findOne('tag', ' tag = ?', [$tag]);
            if (!$rbTag) {
                $rbTag = R::dispense('tag');
                $rbTag->tag = $tag;
                R::store($rbTag);
            }
            $post->sharedTagList[] = $rbTag;
        }
        R::store($post);
    }
    return new Json($post->export());
}, 'PUT')->route('sitemap.xml', '/generate-sitemap', function () use($auth) {
开发者ID:elgervb,项目名称:blog,代码行数:31,代码来源:index.php

示例10: replace

 public function replace($content = '')
 {
     if (empty($this->name)) {
         throw new Exception('Blog post needs name before it can be saved');
     }
     $bean = $this->_bean;
     if ($bean === null) {
         $this->_bean = $bean = R::dispense('blog');
     }
     $bean->name = $this->name;
     $this->content = $bean->content = $content;
     $bean->edited = R::isoDateTime();
     $bean->created = $this->created ?: R::isoDateTime();
     $otherUserBean = App::user()->bean();
     $bean->user = $this->_user !== null ? $this->_user->bean() : $otherUserBean;
     $this->contributorIds[] = $otherUserBean->getID();
     $this->contributorIds = array_unique($this->contributorIds);
     $bean->contributorIds = implode(',', $this->contributorIds);
     if (!empty($this->publishedOn)) {
         $bean->publishedOn = R::isoDateTime($this->publishedOn);
     } else {
         $bean->publishedOn = null;
     }
     R::store($bean);
 }
开发者ID:Koohiisan,项目名称:Enpowi,代码行数:25,代码来源:Post.php

示例11: beforeStoreValue

 public function beforeStoreValue($valueFromUser)
 {
     return R::isoDateTime(strtotime($valueFromUser));
 }
开发者ID:louislam,项目名称:louislam-crud,代码行数:4,代码来源:DateTimeLocalType.php

示例12: getBean

 public function getBean()
 {
     if ($this->bean !== null) {
         return $this->bean;
     }
     $bean = R::findOne('skemaset', ' name = ? ', [$this->name]);
     if (empty($bean)) {
         $bean = R::dispense('skemaset');
         $bean->name = $this->name;
         $bean->cleanName = Utility::cleanTableName($this->name);
         $bean->created = R::isoDateTime();
         $bean->description = '';
         $bean->ownFieldList;
         $bean->{'ownSkemarecord' . $this->cleanBaseName . 'List'};
     }
     return $this->bean = $bean;
 }
开发者ID:skema,项目名称:skema,代码行数:17,代码来源:Set.php


注:本文中的RedBeanPHP\R::isoDateTime方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。