當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。