- Website: https://octobercms.com/
- Docs: https://github.com/octobercms/october
- Developer guide: https://octobercms.com/docs/help/console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <meta charset="utf-8"> | |
| <head> | |
| <title>Test dark mode</title> | |
| <style type="text/css"> | |
| body.dark { | |
| background-color: #212529; | |
| color: #6c757d; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* right click on an entry in the network log, select Copy All as Har | |
| * type in console: x = [paste] | |
| * paste the following JS code into the console | |
| * copy the output, paste into a file | |
| * then wget -i [that file] | |
| */ | |
| (function(logObj, mime) { | |
| var results = []; | |
| logObj.log.entries.forEach(function (entry) { | |
| if (mime && entry.response.content.mimeType !== mime) return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://press.one/p/address/v?s=92c81d04ccd6f2f9a93a055a776cfd1d8a829c4fd73a3163d894640c1006241ffc0c981f56b1d83ec0e586e5e976461fb0935aac9c77b7daa9765a77414d2a100&h=c70c21d8d0ccb8611efd9fb9a8dbd04aa1ebfed56d2aede55a56a758c13e1272&a=d56c3210dc996845db178d293580f55073236777&f=P1&v=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 创建 | |
| ``` | |
| \Excel::create( | |
| 'name', | |
| function ($excel) { | |
| $excel->sheet( | |
| 'name', | |
| function ($sheet) { | |
| $records=[]; | |
| $title=[]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 按钮 可放在 field.yaml 和 columns.yaml 中 type: partial | |
| ``` | |
| <a | |
| href="javascript:;" | |
| class="btn btn-xs" | |
| data-control="popup" | |
| data-handler="onLoadUserItemForm" | |
| data-request-data="id:<?=$record->id?>" | |
| data-size="large"> | |
| 查看报名 |