golden hour
/home/godaofbq/bioredlite.com/wp-content/plugins/fluentform/app/Models
⬆️ Go Up
Upload
File/Folder
Size
Actions
Form.php
9.21 KB
Del
OK
Log.php
566 B
Del
OK
Model.php
564 B
Del
OK
User.php
1.22 KB
Del
OK
Edit: Model.php
<?php namespace FluentForm\App\Models; use FluentForm\Framework\Database\Orm\Model as BaseModel; class Model extends BaseModel { /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = ['id', 'ID']; /** * Get the number of models to return per page. * * @return int */ public function getPerPage() { $request = wpFluentForm('request'); return intval( $request->get('per_page', $request->get('perPage', $this->perPage)) ); } }
Save