-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
145 changed files
with
1,161 additions
and
724 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<license>GNU GPLv3 - http://www.gnu.org/licenses/gpl.html</license> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>www.joomlatools.com</authorUrl> | ||
<version>2.0.6</version> | ||
<version>2.1.0</version> | ||
<description></description> | ||
|
||
<scriptfile>script.php</scriptfile> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
code/libraries/koowa/components/com_koowa/controller/permission/user.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
/** | ||
* Nooku Framework - http://nooku.org/framework | ||
* | ||
* @copyright Copyright (C) 2007 - 2014 Johan Janssens and Timble CVBA. (http://www.timble.net) | ||
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> | ||
* @link https://github.com/nooku/nooku-framework for the canonical source repository | ||
*/ | ||
|
||
/** | ||
* Error Controller Permission | ||
* | ||
* @author Johan Janssens <http://github.com/johanjanssens> | ||
* @package Koowa\Wordpress\Library\Controller | ||
*/ | ||
class ComKoowaControllerPermissionUser extends KControllerPermissionAbstract | ||
{ | ||
public function canAdd() | ||
{ | ||
return false; | ||
} | ||
|
||
public function canEdit() | ||
{ | ||
return false; | ||
} | ||
|
||
public function canDelete() | ||
{ | ||
return false; | ||
} | ||
|
||
public function canAdmin() | ||
{ | ||
return false; | ||
} | ||
|
||
public function canManage() | ||
{ | ||
return false; | ||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
code/libraries/koowa/components/com_koowa/model/entity/user.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?php | ||
/** | ||
* Nooku Framework - http://nooku.org/framework | ||
* | ||
* @copyright Copyright (C) 2007 - 2014 Johan Janssens and Timble CVBA. (http://www.timble.net) | ||
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> | ||
* @link https://github.com/nooku/nooku-framework for the canonical source repository | ||
*/ | ||
|
||
/** | ||
* User entity | ||
* | ||
* @package Koowa\Component\Koowa\Model | ||
*/ | ||
class ComKoowaModelEntityUser extends KModelEntityRow | ||
{ | ||
/** | ||
* A whitelist of fields visible in the JSON representation | ||
* | ||
* @var array | ||
*/ | ||
protected $_fields = array(); | ||
|
||
public function __construct(KObjectConfig $config) | ||
{ | ||
parent::__construct($config); | ||
|
||
// Only allow fields in the config option for security reasons | ||
$this->_fields = array_fill_keys(KObjectConfig::unbox($config->fields), null); | ||
} | ||
|
||
protected function _initialize(KObjectConfig $config) | ||
{ | ||
if (empty($config->fields)) { | ||
$config->fields = array('id', 'name'); | ||
} | ||
|
||
parent::_initialize($config); | ||
} | ||
|
||
/** | ||
* Excludes private fields from JSON representation | ||
* | ||
* @return array | ||
*/ | ||
public function toArray() | ||
{ | ||
$data = parent::toArray(); | ||
|
||
$data = array_intersect_key($data, $this->_fields); | ||
|
||
return $data; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
code/libraries/koowa/components/com_koowa/resources/language/he-IL/he-IL.com_koowa.ini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
; Copyright © 2014 Timble CVBA. (http://www.timble.net) | ||
; GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> | ||
; Note : All ini files need to be saved as UTF-8 | ||
|
||
;libraries/koowa/components/com_koowa/controller/toolbar/actionbar.php | ||
KLS_EDIT_ITEM_TYPE="עריכת {item_type}" | ||
KLS_CREATE_NEW_ITEM_TYPE="יצירת {item_type} חדש" | ||
|
||
;libraries/koowa/components/com_koowa/event/subscriber/unauthorized.php | ||
KLS_YOU_ARE_NOT_AUTHORIZED_TO_ACCESS_THIS_RE_57A91="אינך רשאי/ת לגשת למשאב זה. יש להתחבר ולנסות שנית." | ||
|
||
;libraries/koowa/components/com_koowa/template/helper/accordion.php | ||
KLS_SLIDE="גלילה" | ||
|
||
;libraries/koowa/components/com_koowa/template/helper/behavior.php | ||
KLS_CLEAR="ניקוי" | ||
|
||
;libraries/koowa/components/com_koowa/template/helper/grid.php | ||
KLS_MOVE_UP="הזזה למעלה" | ||
KLS_MOVE_DOWN="הזזה למטה" | ||
KLS_PLEASE_ORDER_BY_THIS_COLUMN_FIRST_BY_CLI_6340E="נא לסדר את הטבלה לפי עמודה זה על-ידי לחיצה על כותרת העמודה" | ||
|
||
;libraries/koowa/components/com_koowa/template/helper/listbox.php | ||
KLS_SELECT="בחירה" | ||
|
||
;libraries/koowa/components/com_koowa/user/provider.php | ||
KLS_ANONYMOUS="אנונימי" | ||
|
||
;libraries/koowa/libraries/controller/behavior/editable.php | ||
KLS_LOCKED_BY_NAME_DATE="נעול על-ידי {name} {date}" | ||
|
||
;libraries/koowa/libraries/controller/toolbar/actionbar.php | ||
KLS_DELETED_ITEMS_WILL_BE_LOST_FOREVER_WOUL_77DC3="פריטים מחוקים יאבדו לנצח. האם תרצה/י להמשיך?" | ||
|
||
;libraries/koowa/libraries/date/date.php | ||
KLS_YESTERDAY="אתמול" | ||
KLS_TOMORROW="מחר" | ||
KLS_JUST_NOW="זה הרגע" | ||
|
||
;libraries/koowa/libraries/template/helper/actionbar.php | ||
KLS_YOU_ARE_NOT_ALLOWED_TO_PERFORM_THIS_ACTI_90D0A="אינך רשאי/ת לבצע פעולה זה" | ||
|
||
;libraries/koowa/libraries/template/helper/behavior.php | ||
KLS_LOADING="טוען..." | ||
|
||
;libraries/koowa/libraries/template/helper/date.php | ||
KLS_NEVER="מעולם" | ||
|
||
;libraries/koowa/libraries/template/helper/grid.php | ||
KLS_FIND_BY_TITLE_OR_DESCRIPTION="חיפוש לפי כותרת או תיאור…" | ||
KLS_DISABLE_ITEM="ביטול פריט" | ||
KLS_ENABLE_ITEM="אפשור פריט" | ||
KLS_UNPUBLISH_ITEM="ביטול פרסום פריט" | ||
KLS_PUBLISH_ITEM="פרסום פריט" | ||
|
||
;libraries/koowa/libraries/template/helper/paginator.php | ||
KLS_PAGE_X_OF_X="דף %s מתוך %s" | ||
|
||
KLS_NUMBER_SECOND_AGO="לפני 1 שנייה" | ||
KLS_NUMBER_SECONDS_AGO="לפני {number} שניות" | ||
KLS_NUMBER_MINUTE_AGO="לפני 1 דקה" | ||
KLS_NUMBER_MINUTES_AGO="לפני {number} דקות" | ||
KLS_NUMBER_HOUR_AGO="לפני 1 שעה" | ||
KLS_NUMBER_HOURS_AGO="לפני {number} שעות" | ||
KLS_NUMBER_DAY_AGO="לפני 1 יום" | ||
KLS_NUMBER_DAYS_AGO="לפני {number} ימים" | ||
KLS_NUMBER_WEEK_AGO="לפני 1 שבוע" | ||
KLS_NUMBER_WEEKS_AGO="לפני {number} שבועות" | ||
KLS_NUMBER_MONTH_AGO="לפני 1 חודש" | ||
KLS_NUMBER_MONTHS_AGO="לפני {number} חודשים" | ||
KLS_NUMBER_YEAR_AGO="לפני 1 שנה" | ||
KLS_NUMBER_YEARS_AGO="לפני {number} שנים" | ||
KLS_NUMBER_SECOND_FROM_NOW="עוד 1 שנייה מעכשיו" | ||
KLS_NUMBER_SECONDS_FROM_NOW="עוד {number} שניות מעכשיו" | ||
KLS_NUMBER_MINUTE_FROM_NOW="עוד 1 דקה מעכשיו" | ||
KLS_NUMBER_MINUTES_FROM_NOW="עוד {number} דקות מעכשיו" | ||
KLS_NUMBER_HOUR_FROM_NOW="עוד 1 שעה מעכשיו" | ||
KLS_NUMBER_HOURS_FROM_NOW="עוד {number} מעכשיו" | ||
KLS_NUMBER_DAY_FROM_NOW="עוד 1 יום מעכשיו" | ||
KLS_NUMBER_DAYS_FROM_NOW="עוד {number} ימים מעכשיו" | ||
KLS_NUMBER_WEEK_FROM_NOW="עוד 1 שבוע מעכשיו" | ||
KLS_NUMBER_WEEKS_FROM_NOW="עוד {number} שבועות מעכשיו" | ||
KLS_NUMBER_MONTH_FROM_NOW="עוד 1 חודש מעכשיו" | ||
KLS_NUMBER_MONTHS_FROM_NOW="עוד {number} חודשים מעכשיו" | ||
KLS_NUMBER_YEAR_FROM_NOW="עוד 1 שנה מעכשיו" | ||
KLS_NUMBER_YEARS_FROM_NOW="עוד {number} שנים מעכשיו" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.