Changeset 455
- Timestamp:
- 06/20/08 13:39:43 (15 years ago)
- Location:
- plugins/blocNotes
- Files:
-
- 3 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/blocNotes/_admin.php
r401 r455 18 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 19 19 # 20 # Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/20 # Icons (*.png) are from Tango Icon theme : http://tango.freedesktop.org/Tango_Icon_Gallery 21 21 # 22 22 # ***** END LICENSE BLOCK ***** … … 27 27 if ($core->auth->check('usage,contentadmin',$core->blog->id)) 28 28 { 29 # 2.0-beta729 # <= 2.0-beta7 30 30 if (isset($__dashboard_icons)) { 31 $__dashboard_icons[] = array(__('Notebook'),'plugin.php?p=blocNotes','index.php?pf=blocNotes/icon .png');31 $__dashboard_icons[] = array(__('Notebook'),'plugin.php?p=blocNotes','index.php?pf=blocNotes/icon-big.png'); 32 32 } 33 # 2.0-be33 # > 2.0-beta7 34 34 $core->addBehavior('adminDashboardIcons',array('blocNotes','adminDashboardIcons')); 35 35 } -
plugins/blocNotes/_define.php
r401 r455 18 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 19 19 # 20 # Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/20 # Icons (*.png) are from Tango Icon theme : http://tango.freedesktop.org/Tango_Icon_Gallery 21 21 # 22 22 # ***** END LICENSE BLOCK ***** … … 26 26 /* Description*/ "Display notebooks on the backend", 27 27 /* Author */ "Moe (http://gniark.net/)", 28 /* Version */ '1.0 ',28 /* Version */ '1.0.1', 29 29 /* Permissions */ 'usage,contentadmin' 30 30 ); -
plugins/blocNotes/index.php
r378 r455 18 18 # along with this program. If not, see <http://www.gnu.org/licenses/>. 19 19 # 20 # Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/20 # Icons (*.png) are from Tango Icon theme : http://tango.freedesktop.org/Tango_Icon_Gallery 21 21 # 22 22 # ***** END LICENSE BLOCK ***** -
plugins/blocNotes/lib.blocNotes.php
r401 r455 27 27 { 28 28 $icons['blocNotes'] = array(__('Notebook'),'plugin.php?p=blocNotes', 29 'index.php?pf=blocNotes/icon .png');29 'index.php?pf=blocNotes/icon-big.png'); 30 30 } 31 31 … … 36 36 echo '<p class="area" id="blocNotes_personal">'. 37 37 '<label for="blocNotes_personal_text">'. 38 __('Personal notebook (other users can 't edit it) :').38 __('Personal notebook (other users can\'t edit it) :'). 39 39 '</label>'. 40 40 form::textarea('blocNotes_personal_text',80,5, … … 49 49 '</p>'. 50 50 '<p>'. 51 __('These notes may be read by anyone, don 't write some sensitive information (password, personal information, etc.)').51 __('These notes may be read by anyone, don\'t write some sensitive information (password, personal information, etc.)'). 52 52 '</p>'; 53 53 }
Note: See TracChangeset
for help on using the changeset viewer.