Skip to content
  • This project
    • Loading...
  • Sign in

Commonwell / broker-site

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • broker-site
  • ..
  • Comment
  • Response.php
  • Jeremy Groot's avatar
    plugin updates · 254fa1fa
    254fa1fa Browse Files
    Jeremy Groot committed 2023-07-11 10:35:03 -0400
Response.php 283 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php

namespace AC\Column\Comment;

use AC\Column;

class Response extends Column {

	public function __construct() {
		$this->set_type( 'response' );
		$this->set_original( true );
	}

	public function register_settings() {
		$this->get_setting( 'width' )->set_default( 15 );
	}

}