PATH:
home
/
centosnipponia
/
public_html
/
eccity
/
vendor
/
jeroennoten
/
laravel-adminlte
/
src
/
Components
/
Widget
<?php namespace JeroenNoten\LaravelAdminLte\Components\Widget; use Illuminate\View\Component; class Card extends Component { /** * The title for the card header. * * @var string */ public $title; /** * A Font Awesome icon for the card header. * * @var string */ public $icon; /** * The card theme (light, dark, primary, secondary, info, success, * warning, danger or any other AdminLTE color like lighblue or teal). * * @var string */ public $theme; /** * The theme mode (full or outline). * * @var string */ public $themeMode; /** * Extra classes for the "card-body" element. This provides a way to * customize the card body container style. * * @var string */ public $bodyClass; /** * Indicates if the card is disabled. When enabled, an overay will show * over the card. * * @var bool|mixed */ public $disabled; /** * Indicates if the card is collapsible. When enabled, a button to * collapse/expand the card will be available. If is set to 'collapsed' * string, the card will be initiated on collapsed mode. * * @var mixed */ public $collapsible; /** * Indicates if the card is removable. When enabled, a button to remove * the card will be available. * * @var bool|mixed */ public $removable; /** * Indicates if the card is maximizable. When enabled, a button to maximize * the card will be available. * * @var bool|mixed */ public $maximizable; /** * Create a new component instance. * * @return void */ public function __construct( $title = null, $icon = null, $theme = null, $themeMode = null, $bodyClass = null, $disabled = null, $collapsible = null, $removable = null, $maximizable = null ) { $this->title = $title; $this->icon = $icon; $this->theme = $theme; $this->themeMode = $themeMode; $this->bodyClass = $bodyClass; $this->disabled = $disabled; $this->removable = $removable; $this->collapsible = $collapsible; $this->maximizable = $maximizable; } /** * Make the class attribute for the card. * * @return string */ public function makeCardClass() { $classes = ['card']; if (isset($this->theme)) { $base = $this->themeMode === 'full' ? 'bg-gradient' : 'card'; $classes[] = "{$base}-{$this->theme}"; if ($this->themeMode === 'outline') { $classes[] = 'card-outline'; } } if ($this->collapsible === 'collapsed') { $classes[] = 'collapsed-card'; } return implode(' ', $classes); } /** * Make the class attribute for the card body. * * @return string */ public function makeCardBodyClass() { $classes = ['card-body']; if (isset($this->bodyClass)) { $classes[] = $this->bodyClass; } return implode(' ', $classes); } /** * Make the class attribute for the card header. * * @return string */ public function makeCardHeaderClass() { $classes = ['card-header']; if ($this->isCardHeaderEmpty()) { $classes[] = 'd-none'; } return implode(' ', $classes); } /** * Make the class attribute for the card title. * * @return string */ public function makeCardTitleClass() { $classes = ['card-title']; if (isset($this->theme) && $this->themeMode === 'outline') { $classes[] = "text-{$this->theme}"; } return implode(' ', $classes); } /** * Check if the card header is empty (no items defined for the header). * * @return bool */ protected function isCardHeaderEmpty() { $hasTools = isset($this->collapsible) || isset($this->maximizable) || isset($this->removable); return empty($this->title) && empty($this->icon) && ! $hasTools; } /** * Get the view / contents that represent the component. * * @return \Illuminate\View\View|string */ public function render() { return view('adminlte::components.widget.card'); } }
[+]
..
[-] ProfileRowItem.php
[edit]
[-] Callout.php
[edit]
[-] ProfileWidget.php
[edit]
[-] Progress.php
[edit]
[-] Alert.php
[edit]
[-] ProfileColItem.php
[edit]
[-] SmallBox.php
[edit]
[-] InfoBox.php
[edit]
[-] Card.php
[edit]
[-] .htaccess.disabled
[edit]