當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ShoppDatabaseObject::save方法代碼示例

本文整理匯總了PHP中ShoppDatabaseObject::save方法的典型用法代碼示例。如果您正苦於以下問題:PHP ShoppDatabaseObject::save方法的具體用法?PHP ShoppDatabaseObject::save怎麽用?PHP ShoppDatabaseObject::save使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ShoppDatabaseObject的用法示例。


在下文中一共展示了ShoppDatabaseObject::save方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: save

 /**
  * Save the object back to the database
  *
  * @author Jonathan Davis
  * @since 1.1
  *
  * @return void
  **/
 function save()
 {
     if (!empty($this->_xcols)) {
         $value = new stdClass();
         foreach ((array) $this->_xcols as $col) {
             $value->{$col} = $this->{$col};
         }
         $this->value = $value;
     }
     parent::save();
 }
開發者ID:forthrobot,項目名稱:inuvik,代碼行數:19,代碼來源:Meta.php

示例2: save

 public function save()
 {
     $addons = $this->addons;
     // Save current addons model
     if (!empty($addons) && is_array($addons)) {
         $this->addons = 'yes';
     }
     // convert property to usable flag
     parent::save();
     if (!empty($addons) && is_array($addons)) {
         foreach ($addons as $Addon) {
             $Addon->parent = $this->id;
             $Addon->save();
         }
     }
     $this->addons = $addons;
     // restore addons model
 }
開發者ID:forthrobot,項目名稱:inuvik,代碼行數:18,代碼來源:Purchased.php

示例3: save

 /**
  * Saves updates or creates records for the defined object properties
  *
  * @author Jonathan Davis
  * @since 1.2
  *
  * @return void
  **/
 function save()
 {
     $this->value = array();
     foreach ($this->_settings as $property) {
         if (!isset($this->{$property})) {
             continue;
         }
         $this->value[$property] = $this->{$property};
     }
     parent::save();
 }
開發者ID:forthrobot,項目名稱:inuvik,代碼行數:19,代碼來源:Membership.php

示例4: save

 public function save()
 {
     $new = false;
     if (empty($this->id)) {
         $new = true;
     }
     if (!empty($this->card)) {
         $this->card = PayCard::truncate($this->card);
     }
     parent::save();
 }
開發者ID:borkweb,項目名稱:shopp,代碼行數:11,代碼來源:Purchase.php

示例5: save

 /**
  * Adds the save_post event to Shopp custom post saves
  *
  * @author Jonathan Davis
  * @since 1.2
  *
  * @return void
  **/
 function save()
 {
     parent::save();
     do_action('save_post', $this->id, get_post($this->id));
 }
開發者ID:crunnells,項目名稱:shopp,代碼行數:13,代碼來源:DB.php

示例6: save

 /**
  * Save the record to the database
  *
  * @author Jonathan Davis
  * @since 1.2
  *
  * @return void
  **/
 public function save()
 {
     if (empty($this->password)) {
         // Do not save empty password updates
         unset($this->password);
     }
     parent::save();
     if (empty($this->info) || !is_array($this->info)) {
         return true;
     }
     foreach ((array) $this->info as $name => $value) {
         $Meta = new ShoppMetaObject(array('parent' => $this->id, 'context' => 'customer', 'type' => 'meta', 'name' => $name));
         $Meta->parent = $this->id;
         $Meta->context = 'customer';
         $Meta->type = 'meta';
         $Meta->name = $name;
         $Meta->value = $value;
         $Meta->save();
     }
 }
開發者ID:BlessySoftwares,項目名稱:anvelocom,代碼行數:28,代碼來源:Customer.php

示例7: save

 /**
  * Process content into an index and save it
  *
  * @author Jonathan Davis
  * @since 1.1
  *
  * @param string $content The content to index
  * @return void
  **/
 function save()
 {
     list($content, ) = func_get_args();
     $content = apply_filters('shopp_index_content', $content, $this);
     if (empty($this->product) || empty($this->type) || empty($content)) {
         return false;
     }
     $factoring = Lookup::index_factors();
     if (isset($factoring[$this->type])) {
         $this->factor = $factoring[$this->type];
     } else {
         $this->factor = 1;
     }
     $this->terms = $content;
     parent::save();
 }
開發者ID:forthrobot,項目名稱:inuvik,代碼行數:25,代碼來源:Search.php


注:本文中的ShoppDatabaseObject::save方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。