PATH:
home
/
centosnipponia
/
public_html
/
eccity
/
vendor
/
jeroennoten
/
laravel-adminlte
/
src
/
Components
/
Layout
<?php namespace JeroenNoten\LaravelAdminLte\Components\Layout; use Illuminate\View\Component; use JeroenNoten\LaravelAdminLte\Http\Controllers\DarkModeController; class NavbarDarkmodeWidget extends Component { /** * The Font Awesome icon to use when dark mode is disabled. * * @var string */ public $iconDisabled = 'far fa-moon'; /** * The Font Awesome icon to use when dark mode is enabled. * * @var string */ public $iconEnabled = 'fas fa-moon'; /** * The AdminLTE color to use for the icon when dark mode is disabled. * * @var string */ public $colorDisabled; /** * The AdminLTE color to use for the icon when dark mode is enabled. * * @var string */ public $colorEnabled; /** * Create a new component instance. * * @return void */ public function __construct( $iconDisabled = null, $iconEnabled = null, $colorDisabled = null, $colorEnabled = null ) { // Setup the icon to use when dark mode is disabled. if (! empty($iconDisabled)) { $this->iconDisabled = $iconDisabled; } // Setup the icon to use when dark mode is enabled. if (! empty($iconEnabled)) { $this->iconEnabled = $iconEnabled; } // Setup the icon colors. $this->colorDisabled = $colorDisabled; $this->colorEnabled = $colorEnabled; } /** * Make the class attribute for the dark mode widget icon. * * @return string */ public function makeIconClass() { // Use the controller to check if dark mode is enabled. if ((new DarkModeController())->isEnabled()) { $classes = $this->makeIconEnabledClass(); } else { $classes = $this->makeIconDisabledClass(); } // Return the icon classes. return implode(' ', $classes); } /** * Make the class attribute for the icon when dark mode is disabled. * * @return array */ public function makeIconDisabledClass() { $classes = explode(' ', $this->iconDisabled); if (! empty($this->colorDisabled)) { $classes[] = "text-{$this->colorDisabled}"; } // Return the icon classes. return $classes; } /** * Make the class attribute for the icon when dark mode is enabled. * * @return array */ public function makeIconEnabledClass() { $classes = explode(' ', $this->iconEnabled); if (! empty($this->colorEnabled)) { $classes[] = "text-{$this->colorEnabled}"; } // Return the icon classes. return $classes; } /** * Get the view / contents that represent the component. * * @return \Illuminate\View\View|string */ public function render() { return view('adminlte::components.layout.navbar-darkmode-widget'); } }
[+]
..
[-] NavbarNotification.php
[edit]
[-] NavbarDarkmodeWidget.php
[edit]
[-] .htaccess.disabled
[edit]