# maxbuttons/6.3/includes/maxbuttons-collections.php

MaxButtons – Create buttons, version 6.3. 22 lines.

- Page: https://pluginprobe.com/plugins/maxbuttons/6.3/code/includes/maxbuttons-collections.php
- Raw: https://pluginprobe.com/plugins/maxbuttons/6.3/raw/includes/maxbuttons-collections.php
- Modified: 2015-10-22T14:53:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/maxbuttons/6.3/code/includes/maxbuttons-collections.php#L10-L20`.

```php
<?php 

$colID = (isset($_GET["colID"])) ? intval($_GET["colID"]) : ''; 
$action = isset($_GET["action"]) ? sanitize_text_field($_GET["action"]) : ''; 

switch($action)
{
	case "edit": 
		require_once("maxbuttons-collection-edit.php"); 
	break;
	
	default; 
		require_once("maxbuttons-collection-list.php"); 
	break; 
}
 




?>

```
