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


PHP Base::save方法代码示例

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


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

示例1: save

 /**
  * Fetches file size if necessary.
  *
  * @override Base::save()
  */
 public function save()
 {
     if (!$this->size || $this->size < 1) {
         $this->determine_file_size();
     }
     return parent::save();
 }
开发者ID:rthees,项目名称:podlove,代码行数:12,代码来源:media_file.php

示例2: save

 public function save()
 {
     parent::save();
     // Add an ID to the node
     $id_node = $this->createValueNode('identifier', ['E42', 'locationplaceNameId', $this->getGeneralId()], $this->node->getId());
     $this->node->relateTo($id_node, 'P1')->save();
 }
开发者ID:weopendata,项目名称:medea,代码行数:7,代码来源:Location.php

示例3: save

 public function save()
 {
     /** @var Base $f3 */
     $f3 = \Base::instance();
     if (!$this->author) {
         $this->author = $f3->get('BACKEND_USER')->_id;
     }
     $this->touch('created_at');
     return parent::save();
 }
开发者ID:xfra35,项目名称:fabulog,代码行数:10,代码来源:post.php

示例4: save

 public function save()
 {
     global $wpdb;
     if (!$this->position) {
         $pos = $wpdb->get_var(sprintf('SELECT MAX(position)+1 FROM %s', self::table_name()));
         $this->position = $pos ? $pos : 1;
     }
     parent::save();
     $this->maybe_connect_to_web_player();
 }
开发者ID:johannes-mueller,项目名称:podlove-publisher,代码行数:10,代码来源:episode_asset.php

示例5: save

 public function save()
 {
     global $wpdb;
     set_transient('podlove_needs_to_flush_rewrite_rules', true);
     $this->slug = sanitize_title($this->slug);
     if (!$this->position) {
         $pos = $wpdb->get_var(sprintf('SELECT MAX(position)+1 FROM %s', self::table_name()));
         $this->position = $pos ? $pos : 1;
     }
     parent::save();
 }
开发者ID:johannes-mueller,项目名称:podlove-publisher,代码行数:11,代码来源:feed.php


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