| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace UCore\DcatAdmin\Widgets;
- use Dcat\Admin\Widgets\Widget;
- class Iframe extends Widget
- {
- public $width = '1000px';
- public $height = '500px';
- public $view = 'admin_core.widgets.iframe';
- protected $title;
- protected $url;
- public function __construct($url, $width = '1000px')
- {
- $this->url = $url;
- $this->width = $width;
- }
- public function defaultVariables()
- {
- return [
- 'width' => $this->width,
- 'height' => $this->height,
- 'url' => $this->url
- ];
- }
- }
|