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
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><script type="text/ng-template" id="dashboard-credits-component-template"> <div class="totalpoll-box"> <div class="totalpoll-box-section"> <div class="totalpoll-box-title"><?php _e( 'Credits', 'totalpoll' ); ?></div> <div class="totalpoll-box-description"><?php _e( 'TotalPoll made possible thanks to these projects and contributors.', 'totalpoll' ); ?></div> </div> <div class="totalpoll-box-section"> <div class="totalpoll-box-credits"> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/translation.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="https://misqtech.com/" target="_blank">MisqTech Team</a> </div> <div class="totalpoll-box-credits-item-description"> Arabic Translation </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/design.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="https://material.io/icons/" target="_blank">Material Design</a> </div> <div class="totalpoll-box-credits-item-description"> Iconography </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/php.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="http://fusonic.github.io/spreadsheetexport/" target="_blank">Fusonic</a> </div> <div class="totalpoll-box-credits-item-description"> SpreadsheetExport PHP Library </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/php.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="http://codeception.com/" target="_blank">Codeception</a> </div> <div class="totalpoll-box-credits-item-description"> Full Stack PHP Testing Framework </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/php.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="https://github.com/thephpleague/container" target="_blank">PHPLeague Container</a> </div> <div class="totalpoll-box-credits-item-description"> IoC PHP Container </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/js.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="http://xdsoft.net/jqplugins/datetimepicker/" target="_blank">XDSoft</a> </div> <div class="totalpoll-box-credits-item-description"> jQuery DateTime Plugin </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/js.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="https://angularjs.org/" target="_blank">AngularJS</a> </div> <div class="totalpoll-box-credits-item-description"> Javascript Framework </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/js.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="https://gulpjs.com/" target="_blank">Gulp</a> </div> <div class="totalpoll-box-credits-item-description"> Task Runner </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/js.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="http://www.chartjs.org/" target="_blank">Chart.js</a> </div> <div class="totalpoll-box-credits-item-description"> Charts Library </div> </div> <div class="totalpoll-box-credits-item"> <div class="totalpoll-box-credits-item-image"> <img src="<?php echo esc_attr( $this->env['url'] ); ?>assets/dist/images/general/js.svg"> </div> <div class="totalpoll-box-credits-item-title"> <a href="https://github.com/bestiejs/platform.js" target="_blank">Platform.js</a> </div> <div class="totalpoll-box-credits-item-description"> Platform Detection Library </div> </div> </div> </div> </div> </script>
|