本文整理汇总了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();
}
示例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();
}
示例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();
}
示例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();
}
示例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();
}