|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Craffft OAuth2 Bundle. |
| 5 | + * |
| 6 | + * (c) Daniel Kiesel <https://github.com/iCodr8> |
| 7 | + * |
| 8 | + * For the full copyright and license information, please view the LICENSE |
| 9 | + * file that was distributed with this source code. |
| 10 | + */ |
| 11 | + |
| 12 | +$GLOBALS['TL_DCA']['tl_oauth2_client'] = array |
| 13 | +( |
| 14 | + // Config |
| 15 | + 'config' => array |
| 16 | + ( |
| 17 | + 'dataContainer' => 'Table', |
| 18 | + 'enableVersioning' => true, |
| 19 | + 'onsubmit_callback' => array |
| 20 | + ( |
| 21 | + array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'storeCreatedAtAndUpdatedAt') |
| 22 | + ), |
| 23 | + 'sql' => array |
| 24 | + ( |
| 25 | + 'keys' => array |
| 26 | + ( |
| 27 | + 'id' => 'primary' |
| 28 | + ) |
| 29 | + ) |
| 30 | + ), |
| 31 | + |
| 32 | + // List |
| 33 | + 'list' => array |
| 34 | + ( |
| 35 | + 'sorting' => array |
| 36 | + ( |
| 37 | + 'mode' => 2, |
| 38 | + 'fields' => array('updated_at DESC'), |
| 39 | + 'flag' => 1, |
| 40 | + 'panelLayout' => 'filter;sort,search,limit' |
| 41 | + ), |
| 42 | + 'label' => array |
| 43 | + ( |
| 44 | + 'fields' => array('client_id', 'secret', 'allowed_grant_types'), |
| 45 | + 'showColumns' => true, |
| 46 | + 'label_callback' => array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'prepareRowItems') |
| 47 | + ), |
| 48 | + 'global_operations' => array |
| 49 | + ( |
| 50 | + 'all' => array |
| 51 | + ( |
| 52 | + 'label' => &$GLOBALS['TL_LANG']['MSC']['all'], |
| 53 | + 'href' => 'act=select', |
| 54 | + 'class' => 'header_edit_all', |
| 55 | + 'attributes' => 'onclick="Backend.getScrollOffset()" accesskey="e"' |
| 56 | + ) |
| 57 | + ), |
| 58 | + 'operations' => array |
| 59 | + ( |
| 60 | + 'edit' => array |
| 61 | + ( |
| 62 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['edit'], |
| 63 | + 'href' => 'act=edit', |
| 64 | + 'icon' => 'edit.gif' |
| 65 | + ), |
| 66 | + 'delete' => array |
| 67 | + ( |
| 68 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['delete'], |
| 69 | + 'href' => 'act=delete', |
| 70 | + 'icon' => 'delete.gif', |
| 71 | + 'attributes' => 'onclick="if(!confirm(\'' . $GLOBALS['TL_LANG']['MSC']['deleteConfirm'] . '\'))return false;Backend.getScrollOffset()"' |
| 72 | + ), |
| 73 | + 'toggle' => array |
| 74 | + ( |
| 75 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['toggle'], |
| 76 | + 'icon' => 'visible.gif', |
| 77 | + 'attributes' => 'onclick="Backend.getScrollOffset();return AjaxRequest.toggleVisibility(this,%s)"', |
| 78 | + 'button_callback' => array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'toggleIcon') |
| 79 | + ), |
| 80 | + 'show' => array |
| 81 | + ( |
| 82 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['show'], |
| 83 | + 'href' => 'act=show', |
| 84 | + 'icon' => 'show.gif' |
| 85 | + ) |
| 86 | + ) |
| 87 | + ), |
| 88 | + |
| 89 | + // Palettes |
| 90 | + 'palettes' => array |
| 91 | + ( |
| 92 | + '__selector__' => array('login', 'assignDir'), |
| 93 | + 'default' => '{login_legend},random_id,secret,allowed_grant_types;{redirect_legend:hide},redirect_uris;{info_legend:hide},created_at,updated_at;{account_legend},disable,start,stop', |
| 94 | + ), |
| 95 | + |
| 96 | + |
| 97 | + // Fields |
| 98 | + 'fields' => array |
| 99 | + ( |
| 100 | + 'id' => array |
| 101 | + ( |
| 102 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['id'], |
| 103 | + 'search' => true, |
| 104 | + 'sorting' => true, |
| 105 | + 'sql' => "int(11) NOT NULL auto_increment" |
| 106 | + ), |
| 107 | + 'tstamp' => array |
| 108 | + ( |
| 109 | + 'sql' => "int(10) unsigned NOT NULL default '0'" |
| 110 | + ), |
| 111 | + 'client_id' => array |
| 112 | + ( |
| 113 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['client_id'] |
| 114 | + ), |
| 115 | + 'random_id' => array |
| 116 | + ( |
| 117 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['random_id'], |
| 118 | + 'exclude' => true, |
| 119 | + 'search' => true, |
| 120 | + 'sorting' => true, |
| 121 | + 'flag' => 1, |
| 122 | + 'inputType' => 'text', |
| 123 | + 'eval' => array('unique'=>true, 'rgxp'=>'extnd', 'nospace'=>true, 'maxlength'=>64), |
| 124 | + 'load_callback' => array |
| 125 | + ( |
| 126 | + array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'setDefaultRandomId') |
| 127 | + ), |
| 128 | + 'sql' => "varchar(255) NOT NULL" |
| 129 | + ), |
| 130 | + 'secret' => array |
| 131 | + ( |
| 132 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['secret'], |
| 133 | + 'exclude' => true, |
| 134 | + 'search' => true, |
| 135 | + 'sorting' => true, |
| 136 | + 'inputType' => 'textarea', |
| 137 | + 'eval' => array('rgxp'=>'extnd', 'nospace'=>true, 'preserveTags'=>true, 'minlength'=>32, 'tl_class' => 'long'), |
| 138 | + 'load_callback' => array |
| 139 | + ( |
| 140 | + array('Craffft\\ContaoOAuth2Bundle\\DataContainer\\OAuth2Client', 'setDefaultSecret') |
| 141 | + ), |
| 142 | + 'sql' => "varchar(255) NOT NULL" |
| 143 | + ), |
| 144 | + 'allowed_grant_types' => array |
| 145 | + ( |
| 146 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['allowed_grant_types'], |
| 147 | + 'exclude' => true, |
| 148 | + 'default' => array( |
| 149 | + \Craffft\ContaoOAuth2Bundle\OAuth2\OAuth2::GRANT_TYPE_AUTH_CODE, |
| 150 | + \Craffft\ContaoOAuth2Bundle\OAuth2\OAuth2::GRANT_TYPE_USER_CREDENTIALS |
| 151 | + ), |
| 152 | + 'inputType' => 'checkbox', |
| 153 | + 'options_callback' => function() { |
| 154 | + return \Craffft\ContaoOAuth2Bundle\OAuth2\OAuth2::getGrantTypes(); |
| 155 | + }, |
| 156 | + 'eval' => array('multiple'=>true), |
| 157 | + 'sql' => "longtext NOT NULL" |
| 158 | + ), |
| 159 | + 'redirect_uris' => array |
| 160 | + ( |
| 161 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['redirect_uris'], |
| 162 | + 'exclude' => true, |
| 163 | + 'sql' => "longtext NOT NULL", |
| 164 | + 'inputType' => 'multiColumnWizard', |
| 165 | + 'eval' => array |
| 166 | + ( |
| 167 | + 'columnFields' => array |
| 168 | + ( |
| 169 | + array |
| 170 | + ( |
| 171 | + 'label' => ' ', |
| 172 | + 'inputType' => 'text' |
| 173 | + ) |
| 174 | + ) |
| 175 | + ) |
| 176 | + ), |
| 177 | + 'created_at' => array |
| 178 | + ( |
| 179 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['created_at'], |
| 180 | + 'exclude' => true, |
| 181 | + 'sorting' => true, |
| 182 | + 'inputType' => 'text', |
| 183 | + 'eval' => array('disabled'=>true, 'rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'), |
| 184 | + 'sql' => "datetime NOT NULL", |
| 185 | + 'load_callback' => array |
| 186 | + ( |
| 187 | + array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getTimestampFromDateString') |
| 188 | + ), |
| 189 | + 'save_callback' => array |
| 190 | + ( |
| 191 | + array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getDateStringFromTimestamp') |
| 192 | + ) |
| 193 | + ), |
| 194 | + 'updated_at' => array |
| 195 | + ( |
| 196 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['updated_at'], |
| 197 | + 'exclude' => true, |
| 198 | + 'sorting' => true, |
| 199 | + 'inputType' => 'text', |
| 200 | + 'eval' => array('disabled'=>true, 'rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'), |
| 201 | + 'sql' => "datetime NOT NULL", |
| 202 | + 'load_callback' => array |
| 203 | + ( |
| 204 | + array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getTimestampFromDateString') |
| 205 | + ), |
| 206 | + 'save_callback' => array |
| 207 | + ( |
| 208 | + array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getDateStringFromTimestamp') |
| 209 | + ) |
| 210 | + ), |
| 211 | + 'disable' => array |
| 212 | + ( |
| 213 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['disable'], |
| 214 | + 'exclude' => true, |
| 215 | + 'filter' => true, |
| 216 | + 'inputType' => 'checkbox', |
| 217 | + 'sql' => "tinyint(1) NOT NULL" |
| 218 | + ), |
| 219 | + 'start' => array |
| 220 | + ( |
| 221 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['start'], |
| 222 | + 'exclude' => true, |
| 223 | + 'inputType' => 'text', |
| 224 | + 'eval' => array('rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'), |
| 225 | + 'sql' => "datetime NULL", |
| 226 | + 'load_callback' => array |
| 227 | + ( |
| 228 | + array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getTimestampFromDateString') |
| 229 | + ), |
| 230 | + 'save_callback' => array |
| 231 | + ( |
| 232 | + array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getDateStringFromTimestamp') |
| 233 | + ) |
| 234 | + ), |
| 235 | + 'stop' => array |
| 236 | + ( |
| 237 | + 'label' => &$GLOBALS['TL_LANG']['tl_oauth2_client']['stop'], |
| 238 | + 'exclude' => true, |
| 239 | + 'inputType' => 'text', |
| 240 | + 'eval' => array('rgxp'=>'datim', 'datepicker'=>true, 'tl_class'=>'w50 wizard'), |
| 241 | + 'sql' => "datetime NULL", |
| 242 | + 'load_callback' => array |
| 243 | + ( |
| 244 | + array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getTimestampFromDateString') |
| 245 | + ), |
| 246 | + 'save_callback' => array |
| 247 | + ( |
| 248 | + array('Craffft\\ContaoOAuth2Bundle\\Util\\DateConverter', 'getDateStringFromTimestamp') |
| 249 | + ) |
| 250 | + ) |
| 251 | + ) |
| 252 | +); |
0 commit comments