Dev#65075 nouvelles fonctionnalites dans bokeh
4 unresolved threads
4 unresolved threads
Merge request reports
Activity
Filter activity
- cosmogramme/VERSIONS_WIP/64573 0 → 100644
- library/Class/Feature.php 0 → 100644
17 * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE 18 * along with BOKEH; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20 */ 21 22 class Class_Feature { 23 24 use 25 Trait_Translator, 26 Trait_StaticFileSystem; 27 28 protected static $_features; 29 30 31 public function hasNew() { 32 return 1 <= $this->countNew(); - library/Class/Feature.php 0 → 100644
68 69 public function hasNewFor($user) { 70 return !empty($this->findNewFor($user)); 71 } 72 73 74 public function countNewFor($user) { 75 return count($this->findNewFor($user)); 76 } 77 78 79 public function findAllBy($ids) { 80 if(!$ids) 81 return []; 82 83 return array_values((new Storm_Collection(array_map([$this, 'find'], $ids))) 192 193 return (new Class_Feature)->findAllBy($ids); 194 } 195 196 197 public function addCheckedFeature($id) { 198 $checked_features = $this->get(static::CHECKED_FEATURE); 199 $checked_features = explode('-', $checked_features); 200 $checked_features = array_values(array_unique(array_merge($checked_features, 201 [$id]))); 202 $this->set(static::CHECKED_FEATURE, implode('-', $checked_features)); 203 return $this->_user; 204 } 205 206 207 public function removeCheckedFeature($id) {