-
Notifications
You must be signed in to change notification settings - Fork 0
/
hooks.html
32 lines (32 loc) · 1.02 KB
/
hooks.html
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
<!doctype html>
<html>
<head>
<title>SMF 2.1 Hooks</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.10/angular.min.js"></script>
<script src="js/controllers.js"></script>
<script src="js/services.js"></script>
<script src="js/app.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
</head>
<body ng-app="HookViewer" ng-controller="hooksController">
<table class="table table-condensed table-striped">
<thead>
<tr>
<th>Hook</th>
<th>File</th>
<th>Line Called</th>
<th>Parameters</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="hook in hooks">
<td>{{hook.hook}}</td>
<td><a href="https://github.com/SimpleMachines/SMF2.1/blob/release-2.1/{{hook.file}}">{{hook.file}}</a></td>
<td><a href="https://github.com/SimpleMachines/SMF2.1/blob/release-2.1/{{hook.file}}#L{{hook.line}}">{{hook.line}}</a></td>
<td>{{hook.param}}</td>
</tr>
</tbody>
</table>
</body>
</html>