actions_in_table_structure.phtml
6.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<td class="print_ignore"><ul class="table-structure-actions resizable-menu">
<!-- Add primary -->
<?php
echo PMA\Template::get('table/structure/action_row_in_structure_table')->render(
array(
'type' => $type,
'tbl_storage_engine' => $tbl_storage_engine,
'class' => 'primary nowrap',
'hasField' => ($primary && $primary->hasColumn($field_name)),
'hasLinkClass' => true,
'url_query' => $url_query,
'primary' => $primary,
'syntax' => 'ADD PRIMARY KEY',
'message' => __('A primary key has been added on %s.'),
'action' => 'Primary',
'titles' => $titles,
'row' => $row,
'isPrimary' => true
)
);
?>
<!-- Add unique -->
<?php
echo PMA\Template::get('table/structure/action_row_in_structure_table')->render(
array(
'type' => $type,
'tbl_storage_engine' => $tbl_storage_engine,
'class' => 'add_unique unique nowrap',
'hasField' => in_array($field_name, $columns_with_unique_index),
'hasLinkClass' => false,
'url_query' => $url_query,
'primary' => $primary,
'syntax' => 'ADD UNIQUE',
'message' => __('An index has been added on %s.'),
'action' => 'Unique',
'titles' => $titles,
'row' => $row,
'isPrimary' => false
)
);
?>
<!-- Add index -->
<?php
echo PMA\Template::get('table/structure/action_row_in_structure_table')->render(
array(
'type' => $type,
'tbl_storage_engine' => $tbl_storage_engine,
'class' => 'add_index nowrap',
'hasField' => false,
'hasLinkClass' => false,
'url_query' => $url_query,
'primary' => $primary,
'syntax' => 'ADD INDEX',
'message' => __('An index has been added on %s.'),
'action' => 'Index',
'titles' => $titles,
'row' => $row,
'isPrimary' => false
)
);
?>
<?php if (!PMA_DRIZZLE): ?>
<!-- Add spatial -->
<?php
$spatial_types = array(
'geometry', 'point', 'linestring', 'polygon', 'multipoint',
'multilinestring', 'multipolygon', 'geomtrycollection'
);
echo PMA\Template::get('table/structure/action_row_in_structure_table')->render(
array(
'type' => $type,
'tbl_storage_engine' => $tbl_storage_engine,
'class' => 'spatial nowrap',
'hasField' => ! (in_array($type, $spatial_types) && ('MYISAM' == $tbl_storage_engine || PMA_MYSQL_INT_VERSION >= 50705)),
'hasLinkClass' => false,
'url_query' => $url_query,
'primary' => $primary,
'syntax' => 'ADD SPATIAL',
'message' => __('An index has been added on %s.'),
'action' => 'Spatial',
'titles' => $titles,
'row' => $row,
'isPrimary' => false
)
);
?>
<!-- FULLTEXT is possible on TEXT, CHAR and VARCHAR -->
<li class="fulltext nowrap">
<?php if (! empty($tbl_storage_engine)
&& ($tbl_storage_engine == 'MYISAM'
|| $tbl_storage_engine == 'ARIA'
|| $tbl_storage_engine == 'MARIA'
|| ($tbl_storage_engine == 'INNODB' && PMA_MYSQL_INT_VERSION >= 50604))
&& (/*overload*/mb_strpos($type, 'text') !== false
|| /*overload*/mb_strpos($type, 'char') !== false)
): ?>
<a rel="samepage" class="ajax add_key add_fulltext_anchor" href="tbl_structure.php<?php echo $url_query; ?>&add_key=1&sql_query=<?php echo urlencode(
'ALTER TABLE ' . PMA_Util::backquote($GLOBALS['table'])
. ' ADD FULLTEXT(' . PMA_Util::backquote($row['Field'])
. ');'); ?>&message_to_show=<?php echo urlencode(sprintf(
__('An index has been added on %s.'),
htmlspecialchars($row['Field']))); ?>">
<?php echo $titles['IdxFulltext']; ?>
</a>
<?php else: ?>
<?php echo $titles['NoIdxFulltext']; ?>
<?php endif; ?>
</li>
<?php endif; ?>
<!-- Distinct value action -->
<li class="browse nowrap">
<a href="sql.php<?php echo $url_query; ?>&sql_query=<?php echo urlencode(
'SELECT COUNT(*) AS ' . PMA_Util::backquote(__('Rows'))
. ', ' . PMA_Util::backquote($row['Field'])
. ' FROM ' . PMA_Util::backquote($GLOBALS['table'])
. ' GROUP BY ' . PMA_Util::backquote($row['Field'])
. ' ORDER BY ' . PMA_Util::backquote($row['Field'])
); ?>&is_browse_distinct=1">
<?php echo $titles['DistinctValues']; ?>
</a>
</li>
<?php if ($GLOBALS['cfgRelation']['centralcolumnswork']): ?>
<li class="browse nowrap">
<?php if ($isInCentralColumns): ?>
<a href="#" onclick=$("input:checkbox").prop("checked",false);
$("#checkbox_row_' . $rownum . '").prop("checked",true);
$("button[value=remove_from_central_columns]").click();>
<?php echo PMA_Util::getIcon(
'centralColumns_delete.png',
__('Remove from central columns')
); ?></a>
<?php else: ?>
<a href="#" onclick=$("input:checkbox").prop("checked",false);
$("#checkbox_row_' . $rownum . '").prop("checked",true);
$("button[value=add_to_central_columns]").click();>
<?php echo PMA_Util::getIcon(
'centralColumns_add.png',
__('Add to central columns')
); ?></a>
<?php endif; ?>
</li>
<?php endif; ?>
</ul></td>